mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-23 22:51:02 +00:00
Refactoring
This commit is contained in:
parent
096fb17929
commit
6ab3edf740
1 changed files with 2 additions and 1 deletions
|
@ -104,7 +104,8 @@ public class MessageClassifier {
|
|||
if (message.subject != null)
|
||||
sb.append(message.subject).append('\n');
|
||||
|
||||
sb.append(HtmlHelper.getFullText(file));
|
||||
String text = HtmlHelper.getFullText(file);
|
||||
sb.append(text);
|
||||
|
||||
if (sb.length() == 0)
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue