diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-04-27 21:59:09 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-04-27 21:59:09 -0400 |
| commit | 87091b6196941fdbbb11408ef1480a6f4175af49 (patch) | |
| tree | 8fde408211e99f26662458607e474f7d2a927a4e /MediaBrowser.Controller | |
| parent | 747518decc3e59a9c6b01f31e5360ce194919d8d (diff) | |
update providers
Diffstat (limited to 'MediaBrowser.Controller')
| -rw-r--r-- | MediaBrowser.Controller/Entities/Video.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/Video.cs b/MediaBrowser.Controller/Entities/Video.cs index 2c7d3856b3..d81e6f0ff7 100644 --- a/MediaBrowser.Controller/Entities/Video.cs +++ b/MediaBrowser.Controller/Entities/Video.cs @@ -317,6 +317,11 @@ namespace MediaBrowser.Controller.Entities { return false; } + + if (newAsVideo.VideoType != VideoType) + { + return false; + } } return base.IsValidFromResolver(newItem); |
