mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-23 00:06:27 +00:00
Example convert forwarded to answered
This commit is contained in:
parent
c65dedaed7
commit
a921c55790
1 changed files with 7 additions and 1 deletions
|
@ -715,8 +715,14 @@ class Core {
|
||||||
if (message.uid == null)
|
if (message.uid == null)
|
||||||
throw new IllegalArgumentException("keyword/uid");
|
throw new IllegalArgumentException("keyword/uid");
|
||||||
|
|
||||||
if (!ifolder.getPermanentFlags().contains(Flags.Flag.USER))
|
if (!ifolder.getPermanentFlags().contains(Flags.Flag.USER)) {
|
||||||
|
if ("$Forwarded".equals(keyword) && false) {
|
||||||
|
JSONArray janswered = new JSONArray();
|
||||||
|
janswered.put(true);
|
||||||
|
onAnswered(context, janswered, folder, message, ifolder);
|
||||||
|
}
|
||||||
return;
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
Message imessage = ifolder.getMessageByUID(message.uid);
|
Message imessage = ifolder.getMessageByUID(message.uid);
|
||||||
if (imessage == null)
|
if (imessage == null)
|
||||||
|
|
Loading…
Reference in a new issue