From 3d8661c3e14d4c5fe01a9e029cc26a6e08f50dbc Mon Sep 17 00:00:00 2001 From: evilhero Date: Thu, 9 May 2019 10:36:29 -0400 Subject: [PATCH] FIX:(#2274) Repeat issue numbers in series incorrectly detected as duplicate --- mylar/updater.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mylar/updater.py b/mylar/updater.py index 964c38b0..91ec96d7 100755 --- a/mylar/updater.py +++ b/mylar/updater.py @@ -1173,7 +1173,7 @@ def forceRescan(ComicID, archive=None, module=None, recheck=False): #this will detect duplicate filenames within the same directory. for di in issuedupechk: - if di['fcdigit'] == fcdigit: + if di['fcdigit'] == fcdigit and di['issueid'] == reiss['IssueID']: #base off of config - base duplication keep on filesize or file-type (or both) logger.fdebug('[DUPECHECK] Duplicate issue detected [' + di['filename'] + '] [' + tmpfc['ComicFilename'] + ']') # mylar.CONFIG.DUPECONSTRAINT = 'filesize' / 'filetype-cbr' / 'filetype-cbz'