Add a helpful comment
This commit is contained in:
parent
2b027b716f
commit
7e817f4aa9
1 changed files with 2 additions and 0 deletions
|
@ -224,6 +224,8 @@ class RoomViewStore extends Store {
|
||||||
err: err,
|
err: err,
|
||||||
});
|
});
|
||||||
let msg = err.message ? err.message : JSON.stringify(err);
|
let msg = err.message ? err.message : JSON.stringify(err);
|
||||||
|
// XXX: We are relying on the error message returned by browsers here.
|
||||||
|
// This isn't great, but it does generalize the error being shown to users.
|
||||||
if (msg && msg.startsWith("CORS request rejected")) {
|
if (msg && msg.startsWith("CORS request rejected")) {
|
||||||
msg = _t("There was an error joining the room");
|
msg = _t("There was an error joining the room");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue