mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-07 10:33:38 +00:00
Merge pull request #473 from adam111316/feature/FixVersionedAnimePP
Fix post processing of anime with version tags
This commit is contained in:
commit
8fdaa5ff6c
2 changed files with 2 additions and 1 deletions
|
@ -105,6 +105,7 @@
|
||||||
* Fix issue parsing items in ToktoToshokan provider
|
* Fix issue parsing items in ToktoToshokan provider
|
||||||
* Change to only show option "End upgrade on first match" on edit show page if quality custom is selected
|
* Change to only show option "End upgrade on first match" on edit show page if quality custom is selected
|
||||||
* Change label "Show is grouped in" in edit show page to "Show is in group" and move the section higher
|
* Change label "Show is grouped in" in edit show page to "Show is in group" and move the section higher
|
||||||
|
* Fix post processing of anime with version tags
|
||||||
|
|
||||||
[develop changelog]
|
[develop changelog]
|
||||||
* Update Requests library 2.7.0 (ab1f493) to 2.7.0 (8b5e457)
|
* Update Requests library 2.7.0 (ab1f493) to 2.7.0 (8b5e457)
|
||||||
|
|
|
@ -882,7 +882,7 @@ class PostProcessor(object):
|
||||||
ep_obj.show.writeMetadata(True)
|
ep_obj.show.writeMetadata(True)
|
||||||
|
|
||||||
# if we're processing an episode of type anime, get the anime version
|
# if we're processing an episode of type anime, get the anime version
|
||||||
anime_version = (-1, self.anime_version)[ep_obj.show.is_anime and None is not self.anime_version and self.anime_version]
|
anime_version = (-1, self.anime_version)[ep_obj.show.is_anime and None is not self.anime_version]
|
||||||
|
|
||||||
# update the ep info before we rename so the quality & release name go into the name properly
|
# update the ep info before we rename so the quality & release name go into the name properly
|
||||||
sql_l = []
|
sql_l = []
|
||||||
|
|
Loading…
Reference in a new issue