diff options
| author | Luke <luke.pulverenti@gmail.com> | 2017-11-12 16:06:19 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-11-12 16:06:19 -0500 |
| commit | 7eab5889fc50a807edd7e216019f958bdeaf8501 (patch) | |
| tree | ab0fa8772804b1f993d009fc3a48102897e6abc3 /MediaBrowser.Model/Entities | |
| parent | b51ed9621fb1c98b891ce5f2fa6fa255a59ad6af (diff) | |
| parent | 351d29954a60084df3cca7dc6db2393298b366cd (diff) | |
Merge pull request #3012 from MediaBrowser/dev
3.2.36.8
Diffstat (limited to 'MediaBrowser.Model/Entities')
| -rw-r--r-- | MediaBrowser.Model/Entities/MediaStream.cs | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/MediaBrowser.Model/Entities/MediaStream.cs b/MediaBrowser.Model/Entities/MediaStream.cs index 4cdcde412..8a402e6f4 100644 --- a/MediaBrowser.Model/Entities/MediaStream.cs +++ b/MediaBrowser.Model/Entities/MediaStream.cs @@ -48,10 +48,10 @@ namespace MediaBrowser.Model.Entities { if (Type == MediaStreamType.Audio) { - if (!string.IsNullOrEmpty(Title)) - { - return AddLanguageIfNeeded(Title); - } + //if (!string.IsNullOrEmpty(Title)) + //{ + // return AddLanguageIfNeeded(Title); + //} List<string> attributes = new List<string>(); @@ -105,10 +105,10 @@ namespace MediaBrowser.Model.Entities if (Type == MediaStreamType.Subtitle) { - if (!string.IsNullOrEmpty(Title)) - { - return AddLanguageIfNeeded(Title); - } + //if (!string.IsNullOrEmpty(Title)) + //{ + // return AddLanguageIfNeeded(Title); + //} List<string> attributes = new List<string>(); |
