1
0
mirror of https://github.com/moparisthebest/mail synced 2024-12-22 07:18:49 -05:00

removed base64 decoding in email model

This commit is contained in:
Tankred Hase 2013-04-05 17:11:32 +02:00
parent 104bc734f6
commit 84c9abcd36

View File

@ -14,15 +14,7 @@
sentDate: null sentDate: null
}, },
initialize: function() { initialize: function() {}
// decode body
try {
var decodedBody = window.atob(this.get('body'));
this.set('body', decodedBody);
} catch (ex) {
console.log(ex);
}
}
}); });