diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-03-07 17:43:53 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-03-07 17:43:53 -0500 |
| commit | 75018055b212a92a4cae6e04fffc79eca54292f7 (patch) | |
| tree | b8e7b507faab1f53ad45df307f35179d92900b58 /MediaBrowser.Controller/Entities/Video.cs | |
| parent | 19ecd450b830aab55a270b5b1e0ba71b45adb489 (diff) | |
add methods to media source manager
Diffstat (limited to 'MediaBrowser.Controller/Entities/Video.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/Video.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/Entities/Video.cs b/MediaBrowser.Controller/Entities/Video.cs index a0c3a6cf9..dd774c1ed 100644 --- a/MediaBrowser.Controller/Entities/Video.cs +++ b/MediaBrowser.Controller/Entities/Video.cs @@ -460,7 +460,7 @@ namespace MediaBrowser.Controller.Entities return result.OrderBy(i => { - if (item.VideoType == VideoType.VideoFile) + if (i.VideoType == VideoType.VideoFile) { return 0; } @@ -556,7 +556,6 @@ namespace MediaBrowser.Controller.Entities return info; } - private static string GetMediaSourceName(Video video, List<MediaStream> mediaStreams) { var terms = new List<string>(); |
