mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-15 16:33:25 -03:00
Default to not extract lyrics (#11523)
This commit is contained in:
@@ -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; }
|
||||
|
||||
Reference in New Issue
Block a user