diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-12-22 13:58:51 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-12-22 13:58:51 -0500 |
| commit | 4c2623d540465088ce8f316eae21541ae807cd84 (patch) | |
| tree | 6c88291c7610a289896ec27465a608c2a20c232f /MediaBrowser.Controller/Library | |
| parent | cac101cc21b5420160a53a64d0950344ee3cd637 (diff) | |
support streaming of tv recordings
Diffstat (limited to 'MediaBrowser.Controller/Library')
| -rw-r--r-- | MediaBrowser.Controller/Library/TVUtils.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Library/TVUtils.cs b/MediaBrowser.Controller/Library/TVUtils.cs index 8b18754c0..d7504a86e 100644 --- a/MediaBrowser.Controller/Library/TVUtils.cs +++ b/MediaBrowser.Controller/Library/TVUtils.cs @@ -124,6 +124,11 @@ namespace MediaBrowser.Controller.Library { var filename = Path.GetFileName(path); + if (string.Equals(path, "specials", StringComparison.OrdinalIgnoreCase)) + { + return 0; + } + // Look for one of the season folder names foreach (var name in SeasonFolderNames) { |
