From cc8de65a9525b31977bd4d78c0f5f1f64f53fb22 Mon Sep 17 00:00:00 2001 From: Jack Date: Sat, 15 Aug 2020 21:40:53 +0100 Subject: [PATCH] stop on error will now revert to default if could not be set --- public/js/userconfig.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/js/userconfig.js b/public/js/userconfig.js index 4ef3373d8..71dafbc8c 100644 --- a/public/js/userconfig.js +++ b/public/js/userconfig.js @@ -259,7 +259,7 @@ function setBlindMode(blind, nosave) { // } function setStopOnError(soe, nosave) { - if (soe == undefined) { + if (soe == undefined || soe === true || soe === false) { soe = "off"; } config.stopOnError = soe;