diff options
| author | Omar Roth <omarroth@protonmail.com> | 2019-11-04 17:08:13 -0500 |
|---|---|---|
| committer | Omar Roth <omarroth@protonmail.com> | 2019-11-04 17:08:13 -0500 |
| commit | bcdb8cd770cfaf32c2b0a9b454d7eb04433204e2 (patch) | |
| tree | 002762fa210fcdcbd32aa67f525ac290c7c9ca24 | |
| parent | 7b2ca55089d4fb65e574c7643d4ebdd307943011 (diff) | |
| download | invidious-bcdb8cd770cfaf32c2b0a9b454d7eb04433204e2.tar.gz invidious-bcdb8cd770cfaf32c2b0a9b454d7eb04433204e2.tar.bz2 invidious-bcdb8cd770cfaf32c2b0a9b454d7eb04433204e2.zip | |
Fix default fo dark_mode
| -rw-r--r-- | src/invidious/helpers/helpers.cr | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/invidious/helpers/helpers.cr b/src/invidious/helpers/helpers.cr index c14028b0..fbb359de 100644 --- a/src/invidious/helpers/helpers.cr +++ b/src/invidious/helpers/helpers.cr @@ -132,7 +132,7 @@ struct ConfigPreferences comments: {type: Array(String), default: ["youtube", ""], converter: StringToArray}, continue: {type: Bool, default: false}, continue_autoplay: {type: Bool, default: true}, - dark_mode: {type: String, default: "light", converter: BoolToString}, + dark_mode: {type: String, default: "", converter: BoolToString}, latest_only: {type: Bool, default: false}, listen: {type: Bool, default: false}, local: {type: Bool, default: false}, |
