From 14f5dd97b1db955ac5b8479081a131b417d94028 Mon Sep 17 00:00:00 2001 From: Justin Date: Tue, 22 Aug 2023 22:25:08 +0800 Subject: [PATCH] enabled screensaver settings --- static/app.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/static/app.js b/static/app.js index f171f08..85864bb 100755 --- a/static/app.js +++ b/static/app.js @@ -3614,10 +3614,10 @@ function saveScreensaverSettings() { }; console.log(settings); - // fetch("/saveSchedulerSettings", { - // method: "POST", - // body: JSON.stringify(settings), - // }); + fetch("/saveScreensaverSettings", { + method: "POST", + body: JSON.stringify(settings), + }); document.getElementById('screensaver-saved').style.display = "block"; }