mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-03-22 23:02:43 +00:00
fix(http): set correct Accept header when dowloading eml file
This commit is contained in:
@@ -1041,7 +1041,7 @@
|
||||
Message.prototype.download = function () {
|
||||
var options;
|
||||
|
||||
options = { filename: this.subject + '.eml' };
|
||||
options = { filename: this.subject + '.eml', type: 'message/rfc822' };
|
||||
return Message.$$resource.download(this.$absolutePath(), 'export', undefined, options);
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user