mirror of
https://github.com/PrivateBin/PrivateBin.git
synced 2024-03-22 13:10:41 +08:00
fixing issue with attachment, empty paste & empty password
This commit is contained in:
parent
ed9c4f45f4
commit
50075ea948
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue
Block a user