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
Why: A parallel user interaction may block a room (forever). Here is an example:
Assume 2 persons in the same room with some goals. Then, the following happens:
User 1 starts dragging one of the goals
User 2 removes the goal
User 1 finishes his operation by dropping a goal
At this point, the room is blocked: no view buttons react to clicks, as the following console error appears:
Uncaught TypeError: Cannot read properties of null (reading 'completed')
at index.js:19:41
at Array.filter ()
at getGoalsDetails (index.js:19:27)
at tabs (index.js:70:20)
at view (timer.js:77:13)
at render (index.js?module=1:393:10)
The error is caused because the "GET wss://mobti.me/room" call returns a null goal alongside others:
Why: A parallel user interaction may block a room (forever). Here is an example:
Assume 2 persons in the same room with some goals. Then, the following happens:
At this point, the room is blocked: no view buttons react to clicks, as the following console error appears:
Uncaught TypeError: Cannot read properties of null (reading 'completed')
at index.js:19:41
at Array.filter ()
at getGoalsDetails (index.js:19:27)
at tabs (index.js:70:20)
at view (timer.js:77:13)
at render (index.js?module=1:393:10)
The error is caused because the "GET wss://mobti.me/room" call returns a null goal alongside others:
The text was updated successfully, but these errors were encountered: