Fix reader on empty body

This commit is contained in:
Tankred Hase 2014-08-05 14:05:07 +02:00
parent d278afb253
commit aa22878033
1 changed files with 1 additions and 1 deletions

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;
}