Skip to content
This repository has been archived by the owner on Dec 20, 2023. It is now read-only.

Commit

Permalink
fixing a bug, do not hide multipart/alternative messages that have no…
Browse files Browse the repository at this point in the history
… PGP content
  • Loading branch information
barrydegraaff committed Oct 25, 2015
1 parent a6a7205 commit 9051a24
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,10 @@ tk_barrydegraaff_zimbra_openpgp.prototype.onMsgView = function (msg, oldMsg, msg
pgpmime = true;
if(bodynode)
{
bodynode.innerHTML = '';
if ( bodynode.innerHTML.indexOf("BEGIN PGP MESSAGE") > 0 )
{
bodynode.innerHTML = '';
}
}
}
else
Expand Down

0 comments on commit 9051a24

Please sign in to comment.