mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 11:47:23 +03:00
Appease the linter
This commit is contained in:
parent
309c32700b
commit
8fffce8a30
1 changed files with 5 additions and 4 deletions
|
@ -108,11 +108,12 @@ export async function leaveRoomBehaviour(roomId: string) {
|
|||
|
||||
const errors = Object.entries(results).filter(r => !!r[1]);
|
||||
if (errors.length > 0) {
|
||||
let messages = [];
|
||||
for (const err of errors) {
|
||||
const messages = [];
|
||||
for (const roomErr of errors) {
|
||||
const err = roomErr[1]; // [0] is the roomId
|
||||
let message = _t("Unexpected server error trying to leave the room");
|
||||
if (results[roomId].errcode && results[roomId].message) {
|
||||
if (results[roomId].errcode === 'M_CANNOT_LEAVE_SERVER_NOTICE_ROOM') {
|
||||
if (err.errcode && err.message) {
|
||||
if (err.errcode === 'M_CANNOT_LEAVE_SERVER_NOTICE_ROOM') {
|
||||
Modal.createTrackedDialog('Error Leaving Room', '', ErrorDialog, {
|
||||
title: _t("Can't leave Server Notices room"),
|
||||
description: _t(
|
||||
|
|
Loading…
Reference in a new issue