mirror of
https://github.com/evilhero/mylar
synced 2025-03-15 08:18:44 +00:00
FIX: fix to allow for the file parser to adjust for filenames where the date is prior to the issue number
This commit is contained in:
parent
15aadaaa23
commit
d51ad541d1
1 changed files with 2 additions and 1 deletions
|
@ -800,7 +800,8 @@ class FileChecker(object):
|
|||
yearposition = x['yearposition']
|
||||
yearmodposition = x['yearmodposition']
|
||||
|
||||
if highest_series_pos > yearposition: highest_series_pos = yearposition #dc['position']: highest_series_pos = dc['position']
|
||||
if yearposition is not None and highest_series_pos > yearposition:
|
||||
highest_series_pos = yearposition #dc['position']: highest_series_pos = dc['position']
|
||||
else:
|
||||
issue_year = None
|
||||
yearposition = None
|
||||
|
|
Loading…
Add table
Reference in a new issue