diff options
| author | Cody Robibero <cody@robibe.ro> | 2024-03-08 15:29:22 -0700 |
|---|---|---|
| committer | Cody Robibero <cody@robibe.ro> | 2024-03-08 15:29:22 -0700 |
| commit | e731250342a0d4d6ac971b310a4b42c675060750 (patch) | |
| tree | 6120b3ceaf946024a54f43315fefd3bb46e266f7 /MediaBrowser.Model/Dlna/TranscodingProfile.cs | |
| parent | a597f1e41057a209417fc5c94f50aaaf587823ed (diff) | |
Lowercase MediaStreamProtocol for backwards compatibility
Diffstat (limited to 'MediaBrowser.Model/Dlna/TranscodingProfile.cs')
| -rw-r--r-- | MediaBrowser.Model/Dlna/TranscodingProfile.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Model/Dlna/TranscodingProfile.cs b/MediaBrowser.Model/Dlna/TranscodingProfile.cs index 8f4f3e2f8..891448c66 100644 --- a/MediaBrowser.Model/Dlna/TranscodingProfile.cs +++ b/MediaBrowser.Model/Dlna/TranscodingProfile.cs @@ -27,7 +27,7 @@ namespace MediaBrowser.Model.Dlna public string AudioCodec { get; set; } = string.Empty; [XmlAttribute("protocol")] - public MediaStreamProtocol Protocol { get; set; } = MediaStreamProtocol.Http; + public MediaStreamProtocol Protocol { get; set; } = MediaStreamProtocol.http; [DefaultValue(false)] [XmlAttribute("estimateContentLength")] |
