You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Go back out to quest view. Solve at least 2 of the newly opened tasks.
Go to the notepad in the character card.
Expected Behavior
A note is displayed in the upper dedicated area, corresponding to the first found clue from a solved task. Clicking on the left/right arrows around it scrolls through other clues and displays another one as a note.
Actual Behavior
A note is displayed in the upper dedicated area, corresponding to the first found clue from a solved task. Clicking on the left/right arrows does nothing. Inspecting localStorage (via dev tab > Application > see mm_notes_predefined) or the Toto user variable (via console logging after getting session info > see MMystery_Notes) shows a string with one element ID and a comma afterwards; this should be multiple / all solved IDs separated by commas.
Possible Solution
The problem is suspected to be on Toto's end, with parsing the user variable. The code in this app only accesses the variable to read it. Maybe the concatenation of the clue from the newly solved task needs to be done in the same way but with different syntax than String({{variable}}) + {{elementId}}.
The text was updated successfully, but these errors were encountered:
Steps to reproduce the problem
MM-notepad
branch, or any derivative or merger).Expected Behavior
A note is displayed in the upper dedicated area, corresponding to the first found clue from a solved task. Clicking on the left/right arrows around it scrolls through other clues and displays another one as a note.
Actual Behavior
A note is displayed in the upper dedicated area, corresponding to the first found clue from a solved task. Clicking on the left/right arrows does nothing. Inspecting
localStorage
(via dev tab > Application > seemm_notes_predefined
) or the Toto user variable (via console logging after getting session info > seeMMystery_Notes
) shows a string with one element ID and a comma afterwards; this should be multiple / all solved IDs separated by commas.Possible Solution
The problem is suspected to be on Toto's end, with parsing the user variable. The code in this app only accesses the variable to read it. Maybe the concatenation of the clue from the newly solved task needs to be done in the same way but with different syntax than
String({{variable}}) + {{elementId}}
.The text was updated successfully, but these errors were encountered: