Fixed an issue where spaces may be appended to word

This commit is contained in:
dabinat 2019-04-11 12:52:10 -07:00
parent 7cda855cb6
commit ec50fb9839

View File

@ -269,7 +269,7 @@ WordsFromMetadata(Metadata* metadata)
// Append character to word if it's not a space
if (strcmp(item.character, " ") != 0
|| strcmp(item.character, u8" ") != 0) {
&& strcmp(item.character, u8" ") != 0) {
word.append(item.character);
}