mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-01 13:39:22 +03:00
Smll fixes
This commit is contained in:
parent
6b7a256ca9
commit
e6ac4cdff0
6 changed files with 30 additions and 24 deletions
|
|
@ -344,6 +344,8 @@
|
|||
|
||||
var
|
||||
sTo = Utils.trim(this.to()),
|
||||
sCc = Utils.trim(this.cc()),
|
||||
sBcc = Utils.trim(this.bcc()),
|
||||
sSentFolder = FolderStore.sentFolder(),
|
||||
aFlagsCache = []
|
||||
;
|
||||
|
|
@ -363,7 +365,7 @@
|
|||
this.attachmentsPlace(true);
|
||||
}
|
||||
|
||||
if (0 === sTo.length)
|
||||
if ('' === sTo && '' === sCc && '' === sBcc)
|
||||
{
|
||||
this.emptyToError(true);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue