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:
authorDaniel Calviño Sánchez <danxuliu@gmail.com>2020-11-18 17:11:52 +0300
committerGitHub <noreply@github.com>2020-11-18 17:11:52 +0300
commit6b95e9e398980e39d712b3119b7f6bdfbad19a5c (patch)
tree62ad859d2b0dadb1d628092af1929d53028734f3
parent73950764fb11a9d2afec9d6518290f5d11a32f2d (diff)
parentdb602b173b359382f7cf82096760b1875e64dbe4 (diff)
Merge pull request #4642 from nextcloud/backport/4640/stable20
[stable20] Grab the token from the correct attribute
-rw-r--r--src/components/LeftSidebar/ConversationsList/ConversationsList.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/LeftSidebar/ConversationsList/ConversationsList.vue b/src/components/LeftSidebar/ConversationsList/ConversationsList.vue
index 09798683b..3e3928b0a 100644
--- a/src/components/LeftSidebar/ConversationsList/ConversationsList.vue
+++ b/src/components/LeftSidebar/ConversationsList/ConversationsList.vue
@@ -85,7 +85,7 @@ export default {
onRouteChange({ from, to }) {
if (from.name === 'conversation'
&& to.name === 'conversation'
- && from.token === to.token) {
+ && from.params.token === to.params.token) {
// this is triggered when the hash in the URL changes
return
}