Skip to content
This repository was archived by the owner on Aug 5, 2021. It is now read-only.

Commit dbf8c26

Browse files
Update grunt-contrib-jshint to make build succeed
1 parent beb11f0 commit dbf8c26

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"grunt-cli": "^0.1.13",
1616
"grunt-contrib-concat": "^0.5.0",
1717
"grunt-contrib-connect": "^0.9.0",
18-
"grunt-contrib-jshint": "^0.10.0",
18+
"grunt-contrib-jshint": "^1.1.0",
1919
"grunt-contrib-sass": "^0.8.1",
2020
"grunt-contrib-watch": "^0.6.1",
2121
"grunt-jscs": "^1.1.0",

src/SessionCipher.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ SessionCipher.prototype = {
185185
}.bind(this));
186186
},
187187
doDecryptWhisperMessage: function(messageBytes, session) {
188-
if (!messageBytes instanceof ArrayBuffer) {
188+
if (!(messageBytes instanceof ArrayBuffer)) {
189189
throw new Error("Expected messageBytes to be an ArrayBuffer");
190190
}
191191
var version = (new Uint8Array(messageBytes))[0];

0 commit comments

Comments
 (0)