aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2020-09-11 13:33:13 +0000
committerGitHub <noreply@github.com>2020-09-11 13:33:13 +0000
commitebdcff8b0857a0aa0d49fe722e4823d3949e83ed (patch)
tree50d2c9f837edb901015a950704d65f0fddc2bd13
parent6aa6e33f7d6dad75a03ad14557e517fa3647a9b3 (diff)
parent73bff9da9d03172e0a96665fcab063c672629a92 (diff)
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
-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 }
};
}