diff options
| author | gnattu <gnattu@users.noreply.github.com> | 2024-05-10 23:03:09 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-10 09:03:09 -0600 |
| commit | 145dc31ccb3634290fee151afb8557feaf2c3220 (patch) | |
| tree | 184ad32c494debac3c614cc2da1071f238063d24 /MediaBrowser.Model/Configuration/LibraryOptions.cs | |
| parent | 5d2a1da73e83f9379b608245c8a4e0eb3acc5c20 (diff) | |
Default to not extract lyrics (#11523)
Diffstat (limited to 'MediaBrowser.Model/Configuration/LibraryOptions.cs')
| -rw-r--r-- | MediaBrowser.Model/Configuration/LibraryOptions.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Model/Configuration/LibraryOptions.cs b/MediaBrowser.Model/Configuration/LibraryOptions.cs index 7ce75b2bc..c956bee47 100644 --- a/MediaBrowser.Model/Configuration/LibraryOptions.cs +++ b/MediaBrowser.Model/Configuration/LibraryOptions.cs @@ -21,7 +21,7 @@ namespace MediaBrowser.Model.Configuration AutomaticallyAddToCollection = false; EnablePhotos = true; SaveSubtitlesWithMedia = true; - SaveLyricsWithMedia = true; + SaveLyricsWithMedia = false; PathInfos = Array.Empty<MediaPathInfo>(); EnableAutomaticSeriesGrouping = true; SeasonZeroDisplayName = "Specials"; @@ -94,7 +94,7 @@ namespace MediaBrowser.Model.Configuration public bool SaveSubtitlesWithMedia { get; set; } - [DefaultValue(true)] + [DefaultValue(false)] public bool SaveLyricsWithMedia { get; set; } public bool AutomaticallyAddToCollection { get; set; } |
