diff options
| author | Luke <luke.pulverenti@gmail.com> | 2016-10-11 17:38:44 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-10-11 17:38:44 -0400 |
| commit | 2abad94e213f93f8cdf1c176bd784c44248e18cd (patch) | |
| tree | da6a32923f45ba52e82a2cb718d7947bdf96724a /MediaBrowser.Controller/Entities/Video.cs | |
| parent | 31c4a0e6af7e477a6329c3e6f0cbf7e230bd1ad8 (diff) | |
| parent | 2c6fc11dcffcaf44aebc8db5c9555e5f72a9269f (diff) | |
Merge pull request #2220 from MediaBrowser/dev
update live stream sharing
Diffstat (limited to 'MediaBrowser.Controller/Entities/Video.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/Video.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/Video.cs b/MediaBrowser.Controller/Entities/Video.cs index e83d1298e..5aaff6fef 100644 --- a/MediaBrowser.Controller/Entities/Video.cs +++ b/MediaBrowser.Controller/Entities/Video.cs @@ -53,6 +53,15 @@ namespace MediaBrowser.Controller.Entities } } + [IgnoreDataMember] + protected override bool SupportsIsInMixedFolderDetection + { + get + { + return true; + } + } + public override string CreatePresentationUniqueKey() { if (!string.IsNullOrWhiteSpace(PrimaryVersionId)) |
