From 37f5ec21666f7648aaba0fe87678138d83d7bbb7 Mon Sep 17 00:00:00 2001 From: N-Pex Date: Mon, 9 Oct 2023 15:33:41 +0200 Subject: [PATCH] Don't show blank page if createRoom fails --- src/components/Join.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/Join.vue b/src/components/Join.vue index 4673917..3ca310d 100644 --- a/src/components/Join.vue +++ b/src/components/Join.vue @@ -432,6 +432,8 @@ export default { console.log("Failed to join room", err); this.loading = false; this.loadingMessage = this.$t("join.join_failed"); + this.waitingForInfo = false; + this.waitingForMembership = false; }); },