Преглед на файлове

Default to not extract lyrics (#11523)

gnattu преди 1 година
родител
ревизия
145dc31ccb
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. 2 2
      MediaBrowser.Model/Configuration/LibraryOptions.cs

+ 2 - 2
MediaBrowser.Model/Configuration/LibraryOptions.cs

@@ -21,7 +21,7 @@ namespace MediaBrowser.Model.Configuration
             AutomaticallyAddToCollection = false;
             AutomaticallyAddToCollection = false;
             EnablePhotos = true;
             EnablePhotos = true;
             SaveSubtitlesWithMedia = true;
             SaveSubtitlesWithMedia = true;
-            SaveLyricsWithMedia = true;
+            SaveLyricsWithMedia = false;
             PathInfos = Array.Empty<MediaPathInfo>();
             PathInfos = Array.Empty<MediaPathInfo>();
             EnableAutomaticSeriesGrouping = true;
             EnableAutomaticSeriesGrouping = true;
             SeasonZeroDisplayName = "Specials";
             SeasonZeroDisplayName = "Specials";
@@ -94,7 +94,7 @@ namespace MediaBrowser.Model.Configuration
 
 
         public bool SaveSubtitlesWithMedia { get; set; }
         public bool SaveSubtitlesWithMedia { get; set; }
 
 
-        [DefaultValue(true)]
+        [DefaultValue(false)]
         public bool SaveLyricsWithMedia { get; set; }
         public bool SaveLyricsWithMedia { get; set; }
 
 
         public bool AutomaticallyAddToCollection { get; set; }
         public bool AutomaticallyAddToCollection { get; set; }