From d47b2e5d0e71a71adfe141f0994a4e5c57a28991 Mon Sep 17 00:00:00 2001 From: azivner Date: Sat, 23 Sep 2017 10:59:36 -0400 Subject: [PATCH] after changing encryption timeout in the settings, apply this immediatelly --- static/js/settings.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/static/js/settings.js b/static/js/settings.js index 79f6500e2..a783810f1 100644 --- a/static/js/settings.js +++ b/static/js/settings.js @@ -72,6 +72,8 @@ $("#encryptionTimeoutForm").submit(() => { contentType: "application/json", success: function () { alert("Encryption timeout has been changed."); + + globalEncryptionSessionTimeout = encryptionTimeout; }, error: () => alert("Error occurred during changing encryption timeout.") });