فهرست منبع

Merge pull request #4118 from SegiH/set-playlist-allow-duplicates-option-to-false-by-default

Change default value for allow duplicates in playlist option to False
Bond-009 4 سال پیش
والد
کامیت
ebdcff8b08
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      Emby.Server.Implementations/ConfigurationOptions.cs

+ 1 - 1
Emby.Server.Implementations/ConfigurationOptions.cs

@@ -18,7 +18,7 @@ namespace Emby.Server.Implementations
             { DefaultRedirectKey, "web/index.html" },
             { FfmpegProbeSizeKey, "1G" },
             { FfmpegAnalyzeDurationKey, "200M" },
-            { PlaylistsAllowDuplicatesKey, bool.TrueString },
+            { PlaylistsAllowDuplicatesKey, bool.FalseString },
             { BindToUnixSocketKey, bool.FalseString }
         };
     }