mirror of
https://github.com/thelounge/thelounge.git
synced 2026-03-14 14:35:50 +01:00
Fix searching channels with uppercase letters in name.
This commit is contained in:
parent
a85478181a
commit
706b02a197
1 changed files with 1 additions and 1 deletions
|
|
@ -223,7 +223,7 @@ class MessageStorage {
|
|||
|
||||
if (query.channelName) {
|
||||
select += " AND channel = ? ";
|
||||
params.push(query.channelName);
|
||||
params.push(query.channelName.toLowerCase());
|
||||
}
|
||||
|
||||
const maxResults = 100;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue