Disable searching nicks.

This commit is contained in:
Richard Lewis 2020-01-04 18:01:37 +00:00
parent 0f3c292098
commit 2591ae9e8e

View file

@ -208,8 +208,8 @@ class MessageStorage {
}
let select =
'SELECT msg, type, time, channel FROM messages WHERE type = "message" AND network = ? AND (json_extract(msg, "$.text") LIKE ? OR json_extract(msg, "$.from") LIKE ?)';
const params = [query.networkUuid, `%${query.searchTerm}%`, `%${query.searchTerm}%`];
'SELECT msg, type, time, channel FROM messages WHERE type = "message" AND network = ? AND json_extract(msg, "$.text") LIKE ?';
const params = [query.networkUuid, `%${query.searchTerm}%`];
if (query.channelName) {
select += " AND channel = ? ";