Browse Source

Change default value for allow duplicates in playlist option to False

Segi Hovav 4 years ago
parent
commit
73bff9da9d
1 changed files with 1 additions and 1 deletions
  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 }
         };
     }