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
C2-25477: OpenFin - setContext in session context group (#2315)
In the OpenFin world, broadcasting a context in a session context group is different from broadcasting in a default context group.
The default context group way:
``` js
await openfin.joinContextGroup(id);
await openfin.setContext(context)
```
The session context group way:
```
const group = await openfin.joinSessionContextGroup(id);
await group.setContext(context)
```
0 commit comments