1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2024-12-29 11:15:51 +00:00

Fetch after cross account move

This commit is contained in:
M66B 2021-03-11 07:32:43 +01:00
parent 30182bd1b7
commit 925f2d320a

View file

@ -1032,6 +1032,15 @@ class Core {
throw new IllegalArgumentException(msg);
}
try {
Log.i(folder.name + " Fetching uid=" + found);
JSONArray fargs = new JSONArray();
fargs.put(found);
onFetch(context, fargs, folder, istore, ifolder, state);
} catch (Throwable ex) {
Log.e(ex);
}
// Mark source read
if (autoread)
EntityOperation.queue(context, message, EntityOperation.SEEN, true);