mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-01 04:35:57 +00:00
Fixed matching attachment names/types
This commit is contained in:
parent
752e3aa9d9
commit
3d89b6d770
1 changed files with 3 additions and 2 deletions
|
@ -349,8 +349,9 @@ public interface DaoMessage {
|
|||
//" OR (:message AND `preview` LIKE :find COLLATE NOCASE)" + // no index
|
||||
//" OR (:notes AND `notes` LIKE :find COLLATE NOCASE)" + // no index
|
||||
//" OR (:headers AND `headers` LIKE :find COLLATE NOCASE)" + // no index
|
||||
" OR (attachment.name LIKE :find COLLATE NOCASE)" + // no index
|
||||
" OR (attachment.type LIKE :find COLLATE NOCASE)) AS matched" + // no index
|
||||
//" OR (attachment.name LIKE :find COLLATE NOCASE)" + // no index
|
||||
//" OR (attachment.type LIKE :find COLLATE NOCASE)" +
|
||||
") AS matched" + // no index
|
||||
" FROM message" +
|
||||
" LEFT JOIN attachment ON attachment.message = message.id" +
|
||||
" WHERE NOT ui_hide" +
|
||||
|
|
Loading…
Reference in a new issue