diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-08-05 21:09:03 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-08-05 21:09:03 -0400 |
| commit | 3ff3d04284429d78ec8adc2292de79ef0c022449 (patch) | |
| tree | 26b5daf7dc3699e4ab9bd41d416195fdbf9f869b /MediaBrowser.Model/Dlna/DeviceProfile.cs | |
| parent | 3ba6364f259ea43979a88b2a83d64292119057dc (diff) | |
fixes #888 - Support m3u8 subtitle playlists
Diffstat (limited to 'MediaBrowser.Model/Dlna/DeviceProfile.cs')
| -rw-r--r-- | MediaBrowser.Model/Dlna/DeviceProfile.cs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/MediaBrowser.Model/Dlna/DeviceProfile.cs b/MediaBrowser.Model/Dlna/DeviceProfile.cs index 630e7fa604..5366a538c0 100644 --- a/MediaBrowser.Model/Dlna/DeviceProfile.cs +++ b/MediaBrowser.Model/Dlna/DeviceProfile.cs @@ -90,8 +90,7 @@ namespace MediaBrowser.Model.Dlna public CodecProfile[] CodecProfiles { get; set; } public ResponseProfile[] ResponseProfiles { get; set; } - public SubtitleProfile[] SoftSubtitleProfiles { get; set; } - public SubtitleProfile[] ExternalSubtitleProfiles { get; set; } + public SubtitleProfile[] SubtitleProfiles { get; set; } public DeviceProfile() { @@ -100,9 +99,6 @@ namespace MediaBrowser.Model.Dlna ResponseProfiles = new ResponseProfile[] { }; CodecProfiles = new CodecProfile[] { }; ContainerProfiles = new ContainerProfile[] { }; - - SoftSubtitleProfiles = new SubtitleProfile[] { }; - ExternalSubtitleProfiles = new SubtitleProfile[] { }; XmlRootAttributes = new XmlAttribute[] { }; |
