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
'gi.actions/identity/kv/load' and possibly also 'gi.actions/group/kv/load' trigger these errors when starting up a fresh session with no logged in user.
Also, there's a typo in error message in group-kv.js that makes it say 'gi.actions/identity/kv/load' instead of 'gi.actions/group/kv/load':
sbp('okTurtles.events/on',ONLINE,()=>{sbp('gi.actions/group/kv/load').catch(e=>{console.error("Error from 'gi.actions/identity/kv/load' after reestablished connection:",e)})})
Solution
Do not log any error to the console if we are not logged in.
Could be as simple as checking whether or not we're logged in inside of the ONLINE handler and not calling load if we're not logged in.
The text was updated successfully, but these errors were encountered:
Problem
'gi.actions/identity/kv/load'
and possibly also'gi.actions/group/kv/load'
trigger these errors when starting up a fresh session with no logged in user.Also, there's a typo in error message in
group-kv.js
that makes it say'gi.actions/identity/kv/load'
instead of'gi.actions/group/kv/load'
:Solution
Do not log any error to the console if we are not logged in.
Could be as simple as checking whether or not we're logged in inside of the
ONLINE
handler and not callingload
if we're not logged in.The text was updated successfully, but these errors were encountered: