mirror of
https://github.com/vector-im/element-web.git
synced 2026-05-04 19:56:45 +02:00
Check error message for room publish failure
Signed-off-by: Andrew Ferrazzutti <fair@miscworks.net>
This commit is contained in:
parent
cd8a0b8aec
commit
71851d8075
@ -222,7 +222,7 @@ export default async function createRoom(opts: IOpts): Promise<string | null> {
|
||||
return client.createRoom(createOpts).finally(function() {
|
||||
if (modal) modal.close();
|
||||
}).catch(function(err) {
|
||||
if (err.httpStatus === 403 && err.errcode == "M_UNKNOWN") {
|
||||
if (err.httpStatus === 403 && err.errcode === "M_UNKNOWN" && err.data.error === "Not allowed to publish room") {
|
||||
console.warn("Failed to publish room, try again without publishing it");
|
||||
createOpts.visibility = Visibility.Private;
|
||||
return client.createRoom(createOpts);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user