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:
parent
d278afb253
commit
aa22878033
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user