mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
fixed emotes after emojis not showing
This commit is contained in:
parent
5b6596066e
commit
cac2786c58
1 changed files with 9 additions and 1 deletions
|
@ -231,7 +231,15 @@ SharedMessage TwitchMessageBuilder::parse()
|
|||
}
|
||||
}
|
||||
|
||||
i += split.length() + 1;
|
||||
for (int j = 0; j < split.size(); j++) {
|
||||
i++;
|
||||
|
||||
if (split.at(j).isHighSurrogate()) {
|
||||
j++;
|
||||
}
|
||||
}
|
||||
|
||||
i++;
|
||||
}
|
||||
|
||||
// TODO: Implement this xD
|
||||
|
|
Loading…
Reference in a new issue