Skip to content

Commit

Permalink
fixed jshint warning
Browse files Browse the repository at this point in the history
  • Loading branch information
lieser committed Sep 10, 2013
1 parent 601c71b commit a381546
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions chrome/content/dkim.js
Original file line number Diff line number Diff line change
Expand Up @@ -879,10 +879,12 @@ DKIM_Verifier.DKIMVerifier = (function() {
* handeles Exeption
*/
function handleExeption(e, msgURI) {
var result;

that.setCollapsed(false);
if (e instanceof DKIM_SigError) {
// save and show result
var result = {
result = {
version : "1.0",
result : "PERMFAIL",
errorType : e.errorType
Expand All @@ -891,7 +893,7 @@ DKIM_Verifier.DKIMVerifier = (function() {
displayResult(result);
} else {
// show result
var result = {
result = {
version : "1.0",
result : "TEMPFAIL",
errorType : e.errorType
Expand Down

0 comments on commit a381546

Please sign in to comment.