mirror of
https://github.com/moparisthebest/SickRage
synced 2024-12-13 03:22:22 -05:00
Fix for absolute numbering issue during renaming of files for non-anime shows.
This commit is contained in:
parent
703da76d80
commit
5fb3fe6797
@ -2156,7 +2156,10 @@ class TVEpisode(object):
|
||||
multi = sickbeard.NAMING_MULTI_EP
|
||||
|
||||
if anime_type == None:
|
||||
anime_type = sickbeard.NAMING_ANIME
|
||||
if not self.show.is_anime:
|
||||
anime_type = 3
|
||||
else:
|
||||
anime_type = sickbeard.NAMING_ANIME
|
||||
|
||||
replace_map = self._replace_map()
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user