mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-12-17 03:34:51 -05:00
fix store/fetch status page config
This commit is contained in:
parent
a8e170f6a8
commit
5f6aa32844
@ -13,7 +13,7 @@ router.get("/api/entry-page", async (_, response) => {
|
||||
router.get("/api/status-page/config", async (_request, response) => {
|
||||
allowDevAllOrigin(response);
|
||||
|
||||
let config = getSettings("statusPage");
|
||||
let config = await getSettings("statusPage");
|
||||
|
||||
if (! config.statusPageTheme) {
|
||||
config.statusPageTheme = "light";
|
||||
|
@ -72,10 +72,10 @@ module.exports.statusPageSocketHandler = (socket) => {
|
||||
try {
|
||||
checkLogin(socket);
|
||||
|
||||
// Save Config
|
||||
await setSettings("statusPage", config);
|
||||
|
||||
await R.transaction(async (trx) => {
|
||||
// Save Config
|
||||
//TODO
|
||||
await setSettings("statusPage", config);
|
||||
|
||||
// Save Icon
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user