diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-12-04 16:30:38 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-12-04 16:30:38 -0500 |
| commit | 401a6b8f4a84f378f0f6682ee7aecccc6ab30935 (patch) | |
| tree | 892ca801450a2578e286e938a5a29a997a502d9d /Emby.Dlna/ConnectionManager/ControlHandler.cs | |
| parent | 7ed6c67db0f28c5776d972668a438369c3b96aef (diff) | |
add request logging
Diffstat (limited to 'Emby.Dlna/ConnectionManager/ControlHandler.cs')
| -rw-r--r-- | Emby.Dlna/ConnectionManager/ControlHandler.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Emby.Dlna/ConnectionManager/ControlHandler.cs b/Emby.Dlna/ConnectionManager/ControlHandler.cs index 0bc44db17..ae983c5e7 100644 --- a/Emby.Dlna/ConnectionManager/ControlHandler.cs +++ b/Emby.Dlna/ConnectionManager/ControlHandler.cs @@ -14,7 +14,7 @@ namespace Emby.Dlna.ConnectionManager { private readonly DeviceProfile _profile; - protected override IEnumerable<KeyValuePair<string, string>> GetResult(string methodName, Headers methodParams) + protected override IEnumerable<KeyValuePair<string, string>> GetResult(string methodName, IDictionary<string, string> methodParams) { if (string.Equals(methodName, "GetProtocolInfo", StringComparison.OrdinalIgnoreCase)) { @@ -26,7 +26,7 @@ namespace Emby.Dlna.ConnectionManager private IEnumerable<KeyValuePair<string, string>> HandleGetProtocolInfo() { - return new Headers(true) + return new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase) { { "Source", _profile.ProtocolInfo }, { "Sink", "" } |
