Small improvement

This commit is contained in:
M66B 2021-01-02 20:50:43 +01:00
parent 5fdc634b2c
commit a25c46fc85
1 changed files with 3 additions and 0 deletions

View File

@ -75,6 +75,9 @@ public class MessageClassifier {
return null;
File file = message.getFile(context);
if (!file.exists())
return null;
String text;
try {
text = HtmlHelper.getFullText(file);