aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/ConfigurationOptions.cs
diff options
context:
space:
mode:
authorSegi Hovav <shovav@gms4sbc.com>2020-09-10 10:03:08 -0700
committerSegi Hovav <shovav@gms4sbc.com>2020-09-10 10:03:08 -0700
commit73bff9da9d03172e0a96665fcab063c672629a92 (patch)
tree8849bbc24e14643447759540b75ec18fee7d4bee /Emby.Server.Implementations/ConfigurationOptions.cs
parent18fe3289790420fa3f7fe7ca32449b8da4a424cc (diff)
Change default value for allow duplicates in playlist option to False
Diffstat (limited to 'Emby.Server.Implementations/ConfigurationOptions.cs')
-rw-r--r--Emby.Server.Implementations/ConfigurationOptions.cs2
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 }
};
}