diff --git a/src/store/socket.js b/src/store/socket.js index e719c13..9b46f8e 100644 --- a/src/store/socket.js +++ b/src/store/socket.js @@ -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); }