fix searchtext format again

This commit is contained in:
ckath 2019-05-30 17:23:01 +02:00 committed by pajlada
parent 83cf03fb09
commit afe5e826a1

View file

@ -440,9 +440,8 @@ MessagePtr TwitchMessageBuilder::build()
this->addWords(splits, twitchEmotes);
this->message().messageText = this->originalMessage_;
this->message().searchText = this->userName + ": " +
this->message().localizedName + ": " +
this->originalMessage_;
this->message().searchText = this->message().localizedName + " " +
this->userName + ": " + this->originalMessage_;
return this->release();
}