Skip to content
This repository has been archived by the owner on Oct 17, 2020. It is now read-only.

Commit

Permalink
Bumping minimum Firefox version to 17 (2 ESR releases ago) - definite…
Browse files Browse the repository at this point in the history
…ly doesn't work in FF11 anymore and don't have time to test in 12 through 16;

Exception message from failed NSS decryption protected by sensitive data check because I'm unsure whether it could contain decryptable data;
  • Loading branch information
luckyrat committed Feb 13, 2014
1 parent 73e4138 commit b3cf990
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Firefox addon/KeeFox/install.rdf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<Description>
<!-- Firefox -->
<em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id>
<em:minVersion>11.0</em:minVersion>
<em:minVersion>17.0</em:minVersion>
<em:maxVersion>28.*</em:maxVersion>
</Description>
</em:targetApplication>
Expand All @@ -27,7 +27,7 @@
<Description>
<!-- Thunderbird -->
<em:id>{3550f703-e582-4d05-9a08-453d09bdfdc6}</em:id>
<em:minVersion>11.0</em:minVersion>
<em:minVersion>17.0</em:minVersion>
<em:maxVersion>28.*</em:maxVersion>
</Description>
</em:targetApplication>
Expand Down
5 changes: 4 additions & 1 deletion Firefox addon/KeeFox/modules/kprpcClient.js
Original file line number Diff line number Diff line change
Expand Up @@ -982,7 +982,10 @@ kprpcClient.prototype.constructor = kprpcClient;

} catch (e)
{
log.info("Failed to decrypt using NSS. Falling back to much slower JS implementation because: " + e);
if (log.logSensitiveData)
log.info("Failed to decrypt using NSS. Falling back to much slower JS implementation because: " + e);
else
log.info("Failed to decrypt using NSS. Falling back to much slower JS implementation.");
return this.decrypt_JS(encryptedContainer);
}
};
Expand Down
Binary file modified XPI-package/latest.xpi
Binary file not shown.

0 comments on commit b3cf990

Please sign in to comment.