mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-29 03:59:21 +03:00
Merge pull request #1347 from SergeyMosin/reply-forward-indicators-fix
fix: flag indicators are added to wrong message when another message is selected while composing
This commit is contained in:
commit
a4724df69e
1 changed files with 2 additions and 2 deletions
|
|
@ -500,10 +500,10 @@ export class ComposePopupView extends AbstractViewPopup {
|
|||
'forward': '$forwarded'
|
||||
}[this.aDraftInfo[0]];
|
||||
if (flag) {
|
||||
const aFlags = MessageUserStore.message().flags();
|
||||
const aFlags = oLastMessage.flags();
|
||||
if (aFlags.indexOf(flag) === -1) {
|
||||
aFlags.push(flag);
|
||||
MessageUserStore.message().flags(aFlags);
|
||||
oLastMessage.flags(aFlags);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue