From 9273869a57cc04c8e1f9ccb3a0b1ed3b8cfde8cb Mon Sep 17 00:00:00 2001 From: Your Name Date: Fri, 9 Jun 2023 10:30:55 -0400 Subject: [PATCH] solo mode fix --- common/templates/common_libs.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/templates/common_libs.html b/common/templates/common_libs.html index 76f8239a..544b4198 100644 --- a/common/templates/common_libs.html +++ b/common/templates/common_libs.html @@ -43,7 +43,7 @@ style.innerHTML = s; document.head.appendChild(style); } - const solo = localStorage.getItem("solo_mode"); + const solo = localStorage.getItem("solo_mode")=="1"; if (solo) { const style = document.createElement("style"); style.innerHTML = ".solo-hidden {display: none;}";