mirror of https://github.com/M66B/FairEmail.git
FTS: index empty messages
This commit is contained in:
parent
3eee4aec8a
commit
ccade9bbd3
|
@ -21,7 +21,6 @@ package eu.faircode.email;
|
||||||
|
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.content.SharedPreferences;
|
import android.content.SharedPreferences;
|
||||||
import android.text.TextUtils;
|
|
||||||
|
|
||||||
import androidx.annotation.NonNull;
|
import androidx.annotation.NonNull;
|
||||||
import androidx.preference.PreferenceManager;
|
import androidx.preference.PreferenceManager;
|
||||||
|
@ -80,10 +79,8 @@ public class WorkerFts extends Worker {
|
||||||
|
|
||||||
File file = message.getFile(context);
|
File file = message.getFile(context);
|
||||||
String text = HtmlHelper.getFullText(file);
|
String text = HtmlHelper.getFullText(file);
|
||||||
if (TextUtils.isEmpty(text)) {
|
if (text == null)
|
||||||
Log.i("FTS empty");
|
text = "";
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
boolean fts = prefs.getBoolean("fts", false);
|
boolean fts = prefs.getBoolean("fts", false);
|
||||||
if (!fts)
|
if (!fts)
|
||||||
|
|
Loading…
Reference in New Issue