mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-26 01:36:55 +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)
|
||||
return;
|
||||
|
||||
if (message.ui_hide)
|
||||
return;
|
||||
|
||||
long start = new Date().getTime();
|
||||
|
||||
// Build text to classify
|
||||
|
|
Loading…
Reference in a new issue