mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-29 03:59:21 +03:00
IMAP UID is integer
This commit is contained in:
parent
9ffc90946c
commit
96e2e6576c
20 changed files with 124 additions and 139 deletions
|
|
@ -170,7 +170,7 @@ class ComposePopupView extends AbstractViewPopup {
|
|||
showReplyTo: false,
|
||||
|
||||
draftFolder: '',
|
||||
draftUid: '',
|
||||
draftUid: 0,
|
||||
sending: false,
|
||||
saving: false,
|
||||
|
||||
|
|
@ -465,7 +465,7 @@ class ComposePopupView extends AbstractViewPopup {
|
|||
|
||||
if (this.bFromDraft) {
|
||||
const message = MessageUserStore.message();
|
||||
if (message && this.draftFolder() === message.folder && this.draftUid() === message.uid) {
|
||||
if (message && this.draftFolder() === message.folder && this.draftUid() == message.uid) {
|
||||
MessageUserStore.message(null);
|
||||
}
|
||||
}
|
||||
|
|
@ -1449,7 +1449,7 @@ class ComposePopupView extends AbstractViewPopup {
|
|||
this.dragAndDropVisible(false);
|
||||
|
||||
this.draftFolder('');
|
||||
this.draftUid('');
|
||||
this.draftUid(0);
|
||||
|
||||
this.sending(false);
|
||||
this.saving(false);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue