fixing issue with attachment, empty paste & empty password

This commit is contained in:
El RIDO 2015-09-18 20:25:53 +02:00
parent ed9c4f45f4
commit 50075ea948

View File

@ -596,7 +596,7 @@ $(function() {
this.attachment.removeClass('hidden');
}
var cleartext = filter.decipher(key, password, comments[0].data);
if (cleartext.length == 0 && password.length == 0)
if (cleartext.length == 0 && password.length == 0 && !comments[0].attachment)
{
password = this.requestPassword();
cleartext = filter.decipher(key, password, comments[0].data);