From 15aadaaa23ba8c48aa34b5e3bc9d7a9287d00ce5 Mon Sep 17 00:00:00 2001 From: evilhero Date: Thu, 25 Jul 2019 20:36:44 -0400 Subject: [PATCH] FIX:(#2313) One-shot file name parsing would not properly detect details in some instances --- mylar/updater.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mylar/updater.py b/mylar/updater.py index 91ec96d7..c807345c 100755 --- a/mylar/updater.py +++ b/mylar/updater.py @@ -995,7 +995,7 @@ def forceRescan(ComicID, archive=None, module=None, recheck=False): break 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: just_the_digits = re.sub('[^0-9]', '', cla['SeriesVolume']).strip() else: