diff options
| author | Bond-009 <bond.009@outlook.com> | 2020-08-20 18:38:38 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-20 18:38:38 +0200 |
| commit | 8cbefdd5614736df4ead5adadc2a95deb45aa326 (patch) | |
| tree | 1bfb4f90c9443a7a0be436e0f135f8cfeb3fdc74 /Emby.Dlna/ControlRequest.cs | |
| parent | eda29dbccb3892a44238484b209b0c9895481714 (diff) | |
| parent | 1337a0dcecfcb275484fc79f1ad317b812cfe483 (diff) | |
Merge pull request #3942 from Ullmie02/dlna-warnings
Reduce warnings in Emby.Dlna
Diffstat (limited to 'Emby.Dlna/ControlRequest.cs')
| -rw-r--r-- | Emby.Dlna/ControlRequest.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Emby.Dlna/ControlRequest.cs b/Emby.Dlna/ControlRequest.cs index a6e03b7e6..c82e002ce 100644 --- a/Emby.Dlna/ControlRequest.cs +++ b/Emby.Dlna/ControlRequest.cs @@ -7,6 +7,11 @@ namespace Emby.Dlna { public class ControlRequest { + public ControlRequest() + { + Headers = new HeaderDictionary(); + } + public IHeaderDictionary Headers { get; set; } public Stream InputXml { get; set; } @@ -14,10 +19,5 @@ namespace Emby.Dlna public string TargetServerUuId { get; set; } public string RequestedUrl { get; set; } - - public ControlRequest() - { - Headers = new HeaderDictionary(); - } } } |
