mirror of
https://github.com/evilhero/mylar
synced 2024-12-22 15:52:47 +00:00
FIX:(#2313) One-shot file name parsing would not properly detect details in some instances
This commit is contained in:
parent
6a1f96167c
commit
15aadaaa23
1 changed files with 1 additions and 1 deletions
|
@ -995,7 +995,7 @@ def forceRescan(ComicID, archive=None, module=None, recheck=False):
|
||||||
break
|
break
|
||||||
|
|
||||||
try:
|
try:
|
||||||
if all([booktype == 'TPB', iscnt > 1]) or all([booktype == 'One-Shot', iscnt == 1]):
|
if all([booktype == 'TPB', iscnt > 1]) or all([booktype == 'One-Shot', iscnt == 1, cla['JusttheDigits'] is None]):
|
||||||
if cla['SeriesVolume'] is not None:
|
if cla['SeriesVolume'] is not None:
|
||||||
just_the_digits = re.sub('[^0-9]', '', cla['SeriesVolume']).strip()
|
just_the_digits = re.sub('[^0-9]', '', cla['SeriesVolume']).strip()
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in a new issue