fix missing role alert

This commit is contained in:
Steffen 2021-02-18 17:22:46 +01:00
parent 5c47dfd5d0
commit fac108d12c
1 changed files with 1 additions and 1 deletions

View File

@ -375,7 +375,7 @@ class LiveSession {
this._store.commit("setCustomRoles", roles);
if (this._store.state.roles.size !== roles.length) {
const missing = [];
roles.forEach(id => {
roles.forEach(({ id }) => {
if (!this._store.state.roles.get(id)) {
missing.push(id);
}