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:
authorJoas Schilling <coding@schilljs.com>2020-06-16 12:33:03 +0300
committerJoas Schilling <coding@schilljs.com>2020-07-01 11:00:24 +0300
commit977521581615ff5ba143f5189a5d1920a18042e7 (patch)
treeb9db29e4842e5008869738b901103fef97c0bdda /src/views/SessionConflictView.vue
parent9fc01a64392d7c1e79a871aec0c90b8d4244067f (diff)
Redirect to a plain page to avoid reconnections
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'src/views/SessionConflictView.vue')
-rw-r--r--src/views/SessionConflictView.vue15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/views/SessionConflictView.vue b/src/views/SessionConflictView.vue
new file mode 100644
index 000000000..4b5974608
--- /dev/null
+++ b/src/views/SessionConflictView.vue
@@ -0,0 +1,15 @@
+<template>
+ <div id="emptycontent">
+ <div id="emptycontent-icon" class="icon-info" />
+ <h2>{{ t('spreed', 'Duplicate session') }}</h2>
+ <p class="emptycontent-additional">
+ {{ t('spreed','You joined the conversation in another window or device. This is currently not supported by Nextcloud Talk so this session was closed.') }}
+ </p>
+ </div>
+</template>
+
+<script>
+export default {
+ name: 'SessionConflictView',
+}
+</script>