Sfoglia il codice sorgente

fixing issue with attachment, empty paste & empty password

El RIDO 11 anni fa
parent
commit
50075ea948
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      js/zerobin.js

+ 1 - 1
js/zerobin.js

@@ -596,7 +596,7 @@ $(function() {
                         this.attachment.removeClass('hidden');
                         this.attachment.removeClass('hidden');
                     }
                     }
                     var cleartext = filter.decipher(key, password, comments[0].data);
                     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();
                         password = this.requestPassword();
                         cleartext = filter.decipher(key, password, comments[0].data);
                         cleartext = filter.decipher(key, password, comments[0].data);