Skip to content

Commit d5f007d

Browse files
committed
Fixed non-working buttons
1 parent 566b423 commit d5f007d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/core/operations/CRCChecksum.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -907,8 +907,8 @@ class CRCChecksum extends Operation {
907907
const width = BigInt(widthObject.string);
908908
const poly = BigInt("0x" + polyObject.string);
909909
const init = BigInt("0x" + initObject.string);
910-
const reflectIn = reflectInObject.string === "True";
911-
const reflectOut = reflectOutObject.string === "True";
910+
const reflectIn = reflectInObject === "True";
911+
const reflectOut = reflectOutObject === "True";
912912
const xorOut = BigInt("0x" + xorOutObject.string);
913913

914914
return this.crc(width, input, poly, init, reflectIn, reflectOut, xorOut);

0 commit comments

Comments
 (0)