From 4c70f471cb1a8d7d186986541c669ea83a4de500 Mon Sep 17 00:00:00 2001 From: Maielo Date: Sun, 14 May 2023 17:51:47 +0200 Subject: [PATCH] increased hidden disconnect timeout --- 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 6568a74d4..a9134abc2 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 = 30000; +export const HIDDEN_DISCONNECT_TIMEOUT = 10 * 60 * 1000; // 10 minutes export const RECONNECT_TOAST_DURATION = 2000; export const FILE_UPLOAD_MAX_BYTES = 3 * 1024 * 1024; // 3 MiB