Merge pull request #1221 from abeloin/patch-notify_pattern

Fix absolute numbering used in notification.
This commit is contained in:
echel0n 2015-01-29 14:42:46 -08:00
commit 19717e8e65
1 changed files with 5 additions and 2 deletions

View File

@ -2191,8 +2191,11 @@ class TVEpisode(object):
if multi == None:
multi = sickbeard.NAMING_MULTI_EP
if anime_type == None:
anime_type = sickbeard.NAMING_ANIME
if sickbeard.NAMING_CUSTOM_ANIME:
if anime_type == None:
anime_type = sickbeard.NAMING_ANIME
else:
anime_type = 3
replace_map = self._replace_map()