From 031a1754741fdb44f53d83034fd5194242c5697e Mon Sep 17 00:00:00 2001 From: OzzieIsaacs Date: Sun, 24 Sep 2017 19:38:15 +0200 Subject: [PATCH] Fix Comic reader --- cps/static/js/io.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cps/static/js/io.js b/cps/static/js/io.js index fcd7e93b..fdff6308 100644 --- a/cps/static/js/io.js +++ b/cps/static/js/io.js @@ -452,7 +452,7 @@ bitjs.io = bitjs.io || {}; var HALF = Math.pow(2, (numBytes * 8) - 1); if (num >= HALF || num < -HALF) { - throw "Trying to write " + num + "" into only " + numBytes + " bytes"; + throw "Trying to write " + num + " into only " + numBytes + " bytes"; } // Roll 8-bits at a time into an array of bytes.