Fix searching channels with uppercase letters in name.

This commit is contained in:
Richard Lewis 2020-06-03 14:17:53 +03:00
parent a85478181a
commit 706b02a197
1 changed files with 1 additions and 1 deletions

View File

@ -223,7 +223,7 @@ class MessageStorage {
if (query.channelName) {
select += " AND channel = ? ";
params.push(query.channelName);
params.push(query.channelName.toLowerCase());
}
const maxResults = 100;