diff options
| author | Mark Monteiro <marknr.monteiro@protonmail.com> | 2020-03-13 23:11:59 +0100 |
|---|---|---|
| committer | Mark Monteiro <marknr.monteiro@protonmail.com> | 2020-03-13 23:11:59 +0100 |
| commit | 79413d9f33aad2aae933e79ad22a8a01ae3b6807 (patch) | |
| tree | da501a870554c98e84821b8d516de01756eb1af5 /Emby.Server.Implementations/ConfigurationOptions.cs | |
| parent | c594b1a4c39c81b11feefe5885543e3014ca44eb (diff) | |
Add a configuration flag to allow/disallow duplicates in playlists
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 } }; } } |
