From eb51892da24c05d939ddad0aa6010c8cd8e42bf9 Mon Sep 17 00:00:00 2001 From: Calin Crisan Date: Thu, 3 Mar 2016 20:35:27 +0200 Subject: [PATCH] simple mjpeg camera: fixed wrong file storage setting --- motioneye/static/js/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/motioneye/static/js/main.js b/motioneye/static/js/main.js index 5264092..2d7da7c 100644 --- a/motioneye/static/js/main.js +++ b/motioneye/static/js/main.js @@ -1793,7 +1793,7 @@ function dict2CameraUi(dict) { $('#webHookStorageUrlEntry').val(dict['web_hook_storage_url']); $('#webHookStorageHttpMethodSelect').val(dict['web_hook_storage_http_method']); - $('#commandStorageEnabledSwitch')[0].checked = dict['command_storage_enabled']; markHideIfNull('command_storage_enabled', 'commandstorageSwitch'); + $('#commandStorageEnabledSwitch')[0].checked = dict['command_storage_enabled']; markHideIfNull('command_storage_enabled', 'commandStorageEnabledSwitch'); $('#commandStorageEntry').val(dict['command_storage_exec']); /* text overlay */ -- 2.39.5