diff options
| author | dkanada <dkanada@users.noreply.github.com> | 2019-08-10 15:12:54 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-08-10 15:12:54 -0700 |
| commit | 5c366e46975d7d541ecacedc0a80b1d269fde007 (patch) | |
| tree | c87e88383c23c29fa6d93e7f84d4b52c3af55cfe /Emby.Server.Implementations/ConfigurationOptions.cs | |
| parent | 4f592e9c33081df54032c2aa3701b45d11c44a12 (diff) | |
| parent | 25917db07a835bf0e5c6afdc0fec165851fffab2 (diff) | |
Merge pull request #1612 from Bond-009/warn4
Fix warnings
Diffstat (limited to 'Emby.Server.Implementations/ConfigurationOptions.cs')
| -rw-r--r-- | Emby.Server.Implementations/ConfigurationOptions.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/ConfigurationOptions.cs b/Emby.Server.Implementations/ConfigurationOptions.cs index 9bc60972a..62408ee70 100644 --- a/Emby.Server.Implementations/ConfigurationOptions.cs +++ b/Emby.Server.Implementations/ConfigurationOptions.cs @@ -6,8 +6,8 @@ namespace Emby.Server.Implementations { public static readonly 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" } }; } } |
