1
0
Fork 0
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:
evilhero 2016-12-31 01:47:24 -05:00
parent 43143d10e3
commit 7278198bee

View file

@ -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