소스 검색

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;
             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; }