mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-26 17:57:16 +00:00
Skip classifying hidden messages
This commit is contained in:
parent
cb37e3cda0
commit
0d883b50c8
1 changed files with 3 additions and 0 deletions
|
@ -67,6 +67,9 @@ public class MessageClassifier {
|
||||||
if (!folder.auto_classify_source)
|
if (!folder.auto_classify_source)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
if (message.ui_hide)
|
||||||
|
return;
|
||||||
|
|
||||||
long start = new Date().getTime();
|
long start = new Date().getTime();
|
||||||
|
|
||||||
// Build text to classify
|
// Build text to classify
|
||||||
|
|
Loading…
Reference in a new issue