mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-04-11.git
synced 2024-08-15 00:43:26 +00:00
Merge pull request #1980 from syeopite/fix1625
Allow default_home config to be an empty string
This commit is contained in:
commit
f20d420aa7
2 changed files with 2 additions and 2 deletions
|
@ -42,7 +42,7 @@ struct ConfigPreferences
|
||||||
property player_style : String = "invidious"
|
property player_style : String = "invidious"
|
||||||
property quality : String = "hd720"
|
property quality : String = "hd720"
|
||||||
property quality_dash : String = "auto"
|
property quality_dash : String = "auto"
|
||||||
property default_home : String = "Popular"
|
property default_home : String? = "Popular"
|
||||||
property feed_menu : Array(String) = ["Popular", "Trending", "Subscriptions", "Playlists"]
|
property feed_menu : Array(String) = ["Popular", "Trending", "Subscriptions", "Playlists"]
|
||||||
property related_videos : Bool = true
|
property related_videos : Bool = true
|
||||||
property sort : String = "published"
|
property sort : String = "published"
|
||||||
|
|
|
@ -68,7 +68,7 @@ struct Preferences
|
||||||
property quality : String = CONFIG.default_user_preferences.quality
|
property quality : String = CONFIG.default_user_preferences.quality
|
||||||
@[JSON::Field(converter: Preferences::ProcessString)]
|
@[JSON::Field(converter: Preferences::ProcessString)]
|
||||||
property quality_dash : String = CONFIG.default_user_preferences.quality_dash
|
property quality_dash : String = CONFIG.default_user_preferences.quality_dash
|
||||||
property default_home : String = CONFIG.default_user_preferences.default_home
|
property default_home : String? = CONFIG.default_user_preferences.default_home
|
||||||
property feed_menu : Array(String) = CONFIG.default_user_preferences.feed_menu
|
property feed_menu : Array(String) = CONFIG.default_user_preferences.feed_menu
|
||||||
property related_videos : Bool = CONFIG.default_user_preferences.related_videos
|
property related_videos : Bool = CONFIG.default_user_preferences.related_videos
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue