From 5e5faf4e67cc580ebfa4d30af6912268c591ce01 Mon Sep 17 00:00:00 2001 From: Maielo Date: Mon, 15 May 2023 19:38:46 +0200 Subject: [PATCH] set hidden connection to 5 mins --- src/excalidraw-app/app_constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/excalidraw-app/app_constants.ts b/src/excalidraw-app/app_constants.ts index a9134abc2..b2c3dcc9e 100644 --- a/src/excalidraw-app/app_constants.ts +++ b/src/excalidraw-app/app_constants.ts @@ -7,7 +7,7 @@ export const SYNC_FULL_SCENE_INTERVAL_MS = 20000; export const SYNC_BROWSER_TABS_TIMEOUT = 50; export const CURSOR_SYNC_TIMEOUT = 33; // ~30fps export const DELETED_ELEMENT_TIMEOUT = 24 * 60 * 60 * 1000; // 1 day -export const HIDDEN_DISCONNECT_TIMEOUT = 10 * 60 * 1000; // 10 minutes +export const HIDDEN_DISCONNECT_TIMEOUT = 5 * 60 * 1000; // 5 minutes export const RECONNECT_TOAST_DURATION = 2000; export const FILE_UPLOAD_MAX_BYTES = 3 * 1024 * 1024; // 3 MiB