mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-01 12:44:42 +00:00
Fetch after cross account move
This commit is contained in:
parent
30182bd1b7
commit
925f2d320a
1 changed files with 9 additions and 0 deletions
|
@ -1032,6 +1032,15 @@ class Core {
|
||||||
throw new IllegalArgumentException(msg);
|
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
|
// Mark source read
|
||||||
if (autoread)
|
if (autoread)
|
||||||
EntityOperation.queue(context, message, EntityOperation.SEEN, true);
|
EntityOperation.queue(context, message, EntityOperation.SEEN, true);
|
||||||
|
|
Loading…
Reference in a new issue