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

github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2020-09-08 16:21:50 +0300
committerJulius Härtl <jus@bitgrid.net>2020-09-08 16:21:50 +0300
commitf60bf3f131ed83be9e9471519aa647d297f54c4b (patch)
tree7010a7265903a3574c9f11890a8ba9539a0b1e82 /src
parent7e30b25ec0d427b447f5ca7305d2e18c083bcb14 (diff)
Adjust idle and disconnect times to match new last contact interval
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'src')
-rw-r--r--src/components/SessionList.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/SessionList.vue b/src/components/SessionList.vue
index 4dd0cc689..58d508a6a 100644
--- a/src/components/SessionList.vue
+++ b/src/components/SessionList.vue
@@ -45,8 +45,8 @@ import PopoverMenu from '@nextcloud/vue/dist/Components/PopoverMenu'
import Tooltip from '@nextcloud/vue/dist/Directives/Tooltip'
import { generateUrl } from '@nextcloud/router'
-const COLLABORATOR_IDLE_TIME = 10
-const COLLABORATOR_DISCONNECT_TIME = 30
+const COLLABORATOR_IDLE_TIME = 60
+const COLLABORATOR_DISCONNECT_TIME = 90
export default {
name: 'SessionList',