diff options
| author | dkanada <dkanada@users.noreply.github.com> | 2020-03-16 02:49:57 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-16 02:49:57 +0900 |
| commit | 7aec11d6210ff95dd5c6d37454f7cffeddceea0f (patch) | |
| tree | 52a54cd4bf74ac48b87e42106cd6a048645c1a32 /Emby.Server.Implementations/ConfigurationOptions.cs | |
| parent | 6ab2b74c18e55624c6f8896b3ec20d8ea1031195 (diff) | |
| parent | 9a7875b6f96b8cf962e51d68694b4fb30b9995af (diff) | |
Merge pull request #2497 from mark-monteiro/1914-prevent-duplicates-in-playlists
Check for duplicates when adding items to a playlist
Diffstat (limited to 'Emby.Server.Implementations/ConfigurationOptions.cs')
| -rw-r--r-- | Emby.Server.Implementations/ConfigurationOptions.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/ConfigurationOptions.cs b/Emby.Server.Implementations/ConfigurationOptions.cs index d0f3d6723..31fb5ca58 100644 --- a/Emby.Server.Implementations/ConfigurationOptions.cs +++ b/Emby.Server.Implementations/ConfigurationOptions.cs @@ -9,7 +9,8 @@ namespace Emby.Server.Implementations { { "HttpListenerHost:DefaultRedirectPath", "web/index.html" }, { FfmpegProbeSizeKey, "1G" }, - { FfmpegAnalyzeDurationKey, "200M" } + { FfmpegAnalyzeDurationKey, "200M" }, + { PlaylistsAllowDuplicatesKey, bool.TrueString } }; } } |
