Skip to content

Commit

Permalink
fix typo in share url in decoder
Browse files Browse the repository at this point in the history
  • Loading branch information
rmccrear committed Mar 7, 2024
1 parent 8fd78b4 commit 1317ba3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/decode-message.js
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ function onReady() {
const params = queryParams();
lettersOnTree = params.letters[0];
const origEncodedMessage = params.encodedmessage[0];
DIGITS = [...params.digitsStr[0]]; // split unicode chars
DIGITS = [...params.digits[0]]; // split unicode chars
$("#left-digit-in-instructions").text(DIGITS[0]);
$("#right-digit-in-instructions").text(DIGITS[1]);
encodedMessage = convertDigits(origEncodedMessage, DIGITS, ["L", "R"])
Expand Down

0 comments on commit 1317ba3

Please sign in to comment.