From 1a0f7aff61af824edba90f69feb5028ac53ce39c Mon Sep 17 00:00:00 2001 From: Jack Date: Sat, 1 Aug 2020 14:58:00 +0100 Subject: [PATCH] updating meta theme color on theme change --- public/index.html | 2 +- public/js/userconfig.js | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/public/index.html b/public/index.html index 218f99297..7270624e6 100644 --- a/public/index.html +++ b/public/index.html @@ -23,7 +23,7 @@ - + diff --git a/public/js/userconfig.js b/public/js/userconfig.js index 8b0e286cf..4a9308a13 100644 --- a/public/js/userconfig.js +++ b/public/js/userconfig.js @@ -573,6 +573,7 @@ function setTheme(name, nosave) { } setTimeout(() => { refreshThemeColorObject(); + $("#metaThemeColor").attr("content", themeColors.main); }, 500); if (!nosave) saveConfigToCookie(); }