mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-08 22:18:28 +03:00
Don't add linked attachments in zip
This commit is contained in:
parent
9141d56dde
commit
1d61ea347f
1 changed files with 1 additions and 1 deletions
|
|
@ -1013,7 +1013,7 @@
|
|||
MessageViewMailBoxUserView.prototype.getAttachmentsHashes = function ()
|
||||
{
|
||||
return _.compact(_.map(this.message() ? this.message().attachments() : [], function (oItem) {
|
||||
return oItem && oItem.checked() ? oItem.download : '';
|
||||
return oItem && !oItem.isLinked && oItem.checked() ? oItem.download : '';
|
||||
}));
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue