1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-01-02 13:14:39 +00:00

Small search fix

This commit is contained in:
M66B 2022-10-12 13:38:23 +02:00
parent 94d69a9f01
commit fe528b14e6

View file

@ -854,7 +854,7 @@ public class BoundaryCallbackMessages extends PagedList.BoundaryCallback<TupleMe
if (!text.contains(w))
return false;
} else if (minus) {
if (text.contains(w))
if (!html && text.contains(w))
return false;
} else
word.add(w);