From 3f71a63512f6876eea2486c9cf7a514419c9184c Mon Sep 17 00:00:00 2001 From: CalDescent Date: Fri, 5 May 2023 18:30:14 +0100 Subject: [PATCH] Increased timeout for other new actions. --- src/main/resources/q-apps/q-apps.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/resources/q-apps/q-apps.js b/src/main/resources/q-apps/q-apps.js index ab82b6b8..5233c7d5 100644 --- a/src/main/resources/q-apps/q-apps.js +++ b/src/main/resources/q-apps/q-apps.js @@ -432,6 +432,8 @@ function getDefaultTimeout(action) { // Some actions need longer default timeouts, especially those that create transactions switch (action) { case "GET_USER_ACCOUNT": + case "SAVE_FILE": + case "DECRYPT_DATA": // User may take a long time to accept/deny the popup return 60 * 60 * 1000;