Fix bug not displaying already decrypted mail

This commit is contained in:
Tankred Hase 2014-06-04 18:33:07 +02:00
parent f33febaa88
commit c89ae65bb7
1 changed files with 3 additions and 2 deletions

View File

@ -787,6 +787,7 @@ define(function(require) {
// the message is decrypting has no body, is not encrypted or has already been decrypted
if (!message.bodyParts || message.decryptingBody || !message.body || !message.encrypted || message.decrypted) {
callback(null, message);
return;
}