mirror of
https://github.com/evilhero/mylar
synced 2025-02-13 17:54:29 +00:00
FIX:(#1513) Fix for problem with file-scanner recognizing issues with 'Vol.#' in the series title
This commit is contained in:
parent
43143d10e3
commit
7278198bee
1 changed files with 5 additions and 0 deletions
|
@ -520,6 +520,11 @@ class FileChecker(object):
|
|||
volumeprior_label = sf
|
||||
sep_volume = True
|
||||
|
||||
elif any([sf == 'I', sf == 'II', sf == 'III', sf == 'IV']) and volumeprior:
|
||||
volumeprior = False
|
||||
volumeprior_label = None
|
||||
sep_volume = False
|
||||
continue
|
||||
else:
|
||||
#reset the sep_volume indicator here in case a false Volume detected above
|
||||
sep_volume = False
|
||||
|
|
Loading…
Reference in a new issue