1
0
mirror of https://github.com/moparisthebest/mail synced 2024-11-26 10:52:17 -05:00

Fix reader on empty body

This commit is contained in:
Tankred Hase 2014-08-05 14:05:07 +02:00
parent d278afb253
commit aa22878033

View File

@ -216,7 +216,7 @@ define(function(require) {
function displayText(body) {
var mail = scope.state.mailList.selected;
if (!body || mail.html || (mail.encrypted && !mail.decrypted)) {
if ((!body && mail.html) || (mail.encrypted && !mail.decrypted)) {
return;
}