mirror of
https://github.com/thelounge/thelounge
synced 2024-12-02 08:49:19 +00:00
Fix searching channels with uppercase letters in name.
This commit is contained in:
parent
b4d02c3c56
commit
f3236538a0
1 changed files with 1 additions and 1 deletions
|
@ -225,7 +225,7 @@ class MessageStorage {
|
|||
|
||||
if (query.channelName) {
|
||||
select += " AND channel = ? ";
|
||||
params.push(query.channelName);
|
||||
params.push(query.channelName.toLowerCase());
|
||||
}
|
||||
|
||||
const maxResults = 100;
|
||||
|
|
Loading…
Reference in a new issue