mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
make it possible to search localized names
This commit is contained in:
parent
b872f83c9e
commit
2e9b0cad44
1 changed files with 3 additions and 1 deletions
|
@ -440,7 +440,9 @@ MessagePtr TwitchMessageBuilder::build()
|
||||||
this->addWords(splits, twitchEmotes);
|
this->addWords(splits, twitchEmotes);
|
||||||
|
|
||||||
this->message().messageText = this->originalMessage_;
|
this->message().messageText = this->originalMessage_;
|
||||||
this->message().searchText = this->userName + ": " + this->originalMessage_;
|
this->message().searchText = this->userName +
|
||||||
|
this->message().localizedName + ": " +
|
||||||
|
this->originalMessage_;
|
||||||
|
|
||||||
return this->release();
|
return this->release();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue