diff options
| author | Segi Hovav <shovav@gms4sbc.com> | 2020-09-10 10:03:08 -0700 |
|---|---|---|
| committer | Segi Hovav <shovav@gms4sbc.com> | 2020-09-10 10:03:08 -0700 |
| commit | 73bff9da9d03172e0a96665fcab063c672629a92 (patch) | |
| tree | 8849bbc24e14643447759540b75ec18fee7d4bee | |
| parent | 18fe3289790420fa3f7fe7ca32449b8da4a424cc (diff) | |
Change default value for allow duplicates in playlist option to False
| -rw-r--r-- | Emby.Server.Implementations/ConfigurationOptions.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/ConfigurationOptions.cs b/Emby.Server.Implementations/ConfigurationOptions.cs index fde6fa115..cd9dbb1bd 100644 --- a/Emby.Server.Implementations/ConfigurationOptions.cs +++ b/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 } }; } |
