diff options
| author | Cody Robibero <cody@robibe.ro> | 2020-11-16 17:07:06 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-16 17:07:06 -0700 |
| commit | be3c65d80f4b2972a2e1a60ed3894102c0ee9cb8 (patch) | |
| tree | 84ae4cf9f5142b697d8164090562f027787f754e /MediaBrowser.Model/Entities/MediaStream.cs | |
| parent | 1d96167e8d58ff59859ae5b9afc1f9e0f6bed74f (diff) | |
| parent | 7b42b7e8bd40ef7bd6bb6a533cb3c9dfcd00c63f (diff) | |
Merge branch 'master' into docker-pls
Diffstat (limited to 'MediaBrowser.Model/Entities/MediaStream.cs')
| -rw-r--r-- | MediaBrowser.Model/Entities/MediaStream.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Entities/MediaStream.cs b/MediaBrowser.Model/Entities/MediaStream.cs index fa3c9aaa2..ca0b93c30 100644 --- a/MediaBrowser.Model/Entities/MediaStream.cs +++ b/MediaBrowser.Model/Entities/MediaStream.cs @@ -191,6 +191,11 @@ namespace MediaBrowser.Model.Entities attributes.Add(Codec.ToUpperInvariant()); } + if (!string.IsNullOrEmpty(VideoRange)) + { + attributes.Add(VideoRange.ToUpperInvariant()); + } + if (!string.IsNullOrEmpty(Title)) { var result = new StringBuilder(Title); |
