Skip classifying outgoing messages

This commit is contained in:
M66B 2020-12-29 11:03:57 +01:00
parent 3760eee798
commit 22e5db815a
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ public class WorkerFts extends Worker {
if (BuildConfig.DEBUG) {
EntityFolder folder = db.folder().getFolder(message.folder);
if (folder != null) {
if (folder != null && !EntityFolder.isOutgoing(folder.type)) {
List<String> features = new ArrayList<>();
BreakIterator boundary = BreakIterator.getWordInstance();