Fixed an issue where spaces may be appended to word
This commit is contained in:
parent
7cda855cb6
commit
ec50fb9839
@ -269,7 +269,7 @@ WordsFromMetadata(Metadata* metadata)
|
|||||||
|
|
||||||
// Append character to word if it's not a space
|
// Append character to word if it's not a space
|
||||||
if (strcmp(item.character, " ") != 0
|
if (strcmp(item.character, " ") != 0
|
||||||
|| strcmp(item.character, u8" ") != 0) {
|
&& strcmp(item.character, u8" ") != 0) {
|
||||||
word.append(item.character);
|
word.append(item.character);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user