Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Petry <vincent@nextcloud.com>2021-02-04 14:26:51 +0300
committerVincent Petry <vincent@nextcloud.com>2021-02-12 17:18:05 +0300
commit2999b5d66559817e57f52be5e02f9cd859da8cc0 (patch)
tree7ed01fbef8b39691f579d30fe08392a0c331406b /src/components/NewMessageForm
parenta5b115f943167732356abc4a946a93510915add0 (diff)
Fix redirect when deleting current conversation
When the current conversation was deleted while in a call, or whenever someone has been removed from a room, the redirect now targets the not-found page instead of the one about duplicate session. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
Diffstat (limited to 'src/components/NewMessageForm')
-rw-r--r--src/components/NewMessageForm/AdvancedInput/AdvancedInput.vue4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/components/NewMessageForm/AdvancedInput/AdvancedInput.vue b/src/components/NewMessageForm/AdvancedInput/AdvancedInput.vue
index 6edf70a1e..e4d05dc06 100644
--- a/src/components/NewMessageForm/AdvancedInput/AdvancedInput.vue
+++ b/src/components/NewMessageForm/AdvancedInput/AdvancedInput.vue
@@ -256,7 +256,9 @@ export default {
// a setTimeout was recommended by the library author here:
// https://github.com/fritx/vue-at/issues/114#issuecomment-565777450
setTimeout(() => {
- this.$refs.at.closePanel()
+ if (this.$refs.at) {
+ this.$refs.at.closePanel()
+ }
}, 100)
},
onPaste(e) {