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
The initial passive login during startup gets triggered during the initial connection the server connected (onServerConnect). At that point however the view models have not been provided to the LoginStateViewModel via onAllBound and hence onUserLoggedIn cannot be called on the view models. The passive login therefore doesn't trigger any additional processing on view models that need that. Example: Plugin Manager doesn't initialize fully, neither does the Software Update plugin. Both never fetch their data from the server.
Workaround
Logout and log back in. That will force the trigger to run and initialize all view models correctly.
Solution
Have the initial passive login request not be sent out until the view models are known and provided to the LoginStateViewModel. onServerReconnect should still also trigger a passive login though.
The text was updated successfully, but these errors were encountered:
Problem
The initial passive login during startup gets triggered during the initial connection the server connected (
onServerConnect
). At that point however the view models have not been provided to theLoginStateViewModel
viaonAllBound
and henceonUserLoggedIn
cannot be called on the view models. The passive login therefore doesn't trigger any additional processing on view models that need that. Example: Plugin Manager doesn't initialize fully, neither does the Software Update plugin. Both never fetch their data from the server.Workaround
Logout and log back in. That will force the trigger to run and initialize all view models correctly.
Solution
Have the initial passive login request not be sent out until the view models are known and provided to the
LoginStateViewModel
.onServerReconnect
should still also trigger a passive login though.The text was updated successfully, but these errors were encountered: