Replace '_' with ':' in config keys

This commit is contained in:
Bond-009
2019-12-12 16:57:16 +01:00
parent baadb504bb
commit 2c0259f920
4 changed files with 6 additions and 6 deletions

View File

@@ -7,8 +7,8 @@ namespace Emby.Server.Implementations
{
public static Dictionary<string, string> Configuration => new Dictionary<string, string>
{
{ "HttpListenerHost_DefaultRedirectPath", "web/index.html" },
{ "MusicBrainz_BaseUrl", "https://www.musicbrainz.org" },
{ "HttpListenerHost:DefaultRedirectPath", "web/index.html" },
{ "MusicBrainz:BaseUrl", "https://www.musicbrainz.org" },
{ FfmpegProbeSizeKey, "1G" },
{ FfmpegAnalyzeDurationKey, "200M" }
};