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
At the moment the addon seems not to support multiple UIs.
In a simple use case, where an additional UI is opened at some point in the future, the instances of the idle notification are async. This means, that for the earlier opened UI the idle notification will popup, while for the other UI it is not shown.
Also any actions in one UI are not reflected in the other UIs. If UI 1 is interacted with, UI 2 is not informed and thus still thinks, that it's session is running out.
The text was updated successfully, but these errors were encountered:
Side note: Using server side push brought up different issues where one is, that on each single request all other UIs get "pushed" all the time, which may lead to unnecessary overhead. Also having long term operations blocking one UI may lead to async issues regarding the timer.
Therefore I used the client side BroadcastChannel to communicate between the tabs directly. Here is a workaround sample:
At the moment the addon seems not to support multiple UIs.
In a simple use case, where an additional UI is opened at some point in the future, the instances of the idle notification are async. This means, that for the earlier opened UI the idle notification will popup, while for the other UI it is not shown.
Also any actions in one UI are not reflected in the other UIs. If UI 1 is interacted with, UI 2 is not informed and thus still thinks, that it's session is running out.
The text was updated successfully, but these errors were encountered: