1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-20 21:54:58 -04:00

New: Auto theme option to match OS theme

Co-authored-by: Qstick <qstick@gmail.com>
This commit is contained in:
Zak Saunders
2022-12-06 07:22:52 +00:00
committed by GitHub
parent c7d6c0f452
commit 4ca5a213fa
3 changed files with 6 additions and 2 deletions
@@ -191,7 +191,7 @@ namespace NzbDrone.Core.Configuration
public string LogLevel => GetValue("LogLevel", "info").ToLowerInvariant();
public string ConsoleLogLevel => GetValue("ConsoleLogLevel", string.Empty, persist: false);
public string Theme => GetValue("Theme", "light", persist: false);
public string Theme => GetValue("Theme", "auto", persist: false);
public bool LogSql => GetValueBoolean("LogSql", false, persist: false);
public int LogRotate => GetValueInt("LogRotate", 50, persist: false);
public bool FilterSentryEvents => GetValueBoolean("FilterSentryEvents", true, persist: false);