1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-01-02 13:14:39 +00:00

Disable fetch on report

This commit is contained in:
M66B 2021-12-27 17:46:58 +01:00
parent 6fe8b4c2ef
commit 414dbfd2f7

View file

@ -2003,13 +2003,14 @@ class Core {
Flags flags = new Flags(keyword);
imessage.setFlags(flags, true);
try {
JSONArray fargs = new JSONArray();
fargs.put(uid);
onFetch(context, fargs, folder, istore, ifolder, state);
} catch (Throwable ex) {
Log.w(ex);
}
if (BuildConfig.DEBUG)
try {
JSONArray fargs = new JSONArray();
fargs.put(uid);
onFetch(context, fargs, folder, istore, ifolder, state);
} catch (Throwable ex) {
Log.w(ex);
}
}
}