From 11dbaa740eceb87ff793b29290d1cd57380a5ef2 Mon Sep 17 00:00:00 2001 From: GithubAnon0000 <160563432+GithubAnon0000@users.noreply.github.com> Date: Mon, 29 Sep 2025 22:42:24 +0200 Subject: [PATCH] FIX: Option had no initial value (true/false) --- rslib/src/config/schema11.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/rslib/src/config/schema11.rs b/rslib/src/config/schema11.rs index afbc398e6..fba43b232 100644 --- a/rslib/src/config/schema11.rs +++ b/rslib/src/config/schema11.rs @@ -25,6 +25,7 @@ pub(crate) fn schema11_config_as_string(creation_offset: Option) -> String "schedVer": 2, "creationOffset": creation_offset, "sched2021": true, + "hideColor": true, }); serde_json::to_string(&obj).unwrap() }