mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-05 17:43:37 +00:00
Fix for absolute numbering issue during renaming of files for non-anime shows.
This commit is contained in:
parent
703da76d80
commit
5fb3fe6797
1 changed files with 4 additions and 1 deletions
|
@ -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 a new issue