Skip to content

Commit

Permalink
Fix code that no longer parses as valid.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaimeperez committed Feb 4, 2016
1 parent 3a0bbe9 commit b93d08b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion chrome/samltrace/content/filters.js
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,10 @@ SAMLTraceIO_filters.hashString = function(sval, alg) {
ch.update(data, data.length);
var hash = ch.finish(false)

var s = [SAMLTraceIO_filters.toHashString(hash.charCodeAt(i)) for (i in hash)].join("");
var s = "";
for (i in hash) {
s += SAMLTraceIO_filters.toHashString(hash.charCodeAt(i));
}

return s;
}
Expand Down

0 comments on commit b93d08b

Please sign in to comment.