close session when missing custom roles

This commit is contained in:
Steffen 2020-12-23 21:07:35 +01:00
parent e2d7fa64f2
commit 984c02980c
2 changed files with 3 additions and 1 deletions

View File

@ -1,7 +1,7 @@
# Release Notes
## Version 2.0.3
- close session when missing custom roles and open edition modal
- added a few more metrics
---

View File

@ -360,6 +360,8 @@ class LiveSession {
`Please load them before joining! ` +
`Missing roles: ${missing.join(", ")}`
);
this.disconnect();
this._store.commit("toggleModal", "edition");
}
}
}