diff options
| author | Luis Miguel Almánzar <ruisu15@gmail.com> | 2013-11-25 23:16:44 -0400 |
|---|---|---|
| committer | Luis Miguel Almánzar <ruisu15@gmail.com> | 2013-11-25 23:16:44 -0400 |
| commit | c82afc6a8fcc4562930cc874a370ffb04ebb48f0 (patch) | |
| tree | 100743b417a8d1d7ae0fa7ba4c552987f50e9a6b /MediaBrowser.Controller/Library | |
| parent | 6a9ed5f87f2d9ec0e07d860d36666f0fea2e1e45 (diff) | |
support simple episode naming.( XX - {Name}.ext )
Diffstat (limited to 'MediaBrowser.Controller/Library')
| -rw-r--r-- | MediaBrowser.Controller/Library/TVUtils.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Library/TVUtils.cs b/MediaBrowser.Controller/Library/TVUtils.cs index 7a5722746..65308bd10 100644 --- a/MediaBrowser.Controller/Library/TVUtils.cs +++ b/MediaBrowser.Controller/Library/TVUtils.cs @@ -257,7 +257,7 @@ namespace MediaBrowser.Controller.Library if (match != null) { - return ParseEpisodeNumber(match.Value); + return ParseEpisodeNumber(match.Groups["epnumber"].Value); } } |
