Fix broken linkify.

This commit is contained in:
Black Hat
2019-09-30 11:31:15 -07:00
parent ebea18b9af
commit a5fe15b6de

View File

@@ -265,7 +265,7 @@ QString SpectralRoom::eventToString(const RoomEvent& evt,
if (prettyPrint) {
auto plainBody = e.plainBody();
if (removeReply) {
return plainBody.remove(utils::removeReplyRegex);
plainBody.remove(utils::removeReplyRegex);
}
return QMatrixClient::prettyPrint(plainBody);
}