mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-21 23:32:51 +00:00
Reply indication only when not forwarding
This commit is contained in:
parent
2c8be7cac9
commit
5480b9454a
1 changed files with 1 additions and 1 deletions
|
@ -1009,7 +1009,7 @@ public class ServiceSend extends ServiceBase implements SharedPreferences.OnShar
|
|||
}
|
||||
|
||||
// Mark replied
|
||||
if (message.inreplyto != null) {
|
||||
if (message.inreplyto != null && message.wasforwardedfrom == null) {
|
||||
List<EntityMessage> replieds = db.message().getMessagesByMsgId(message.account, message.inreplyto);
|
||||
for (EntityMessage replied : replieds)
|
||||
EntityOperation.queue(this, replied, EntityOperation.ANSWERED, true);
|
||||
|
|
Loading…
Reference in a new issue