remove volume number from skipped list when --forcevol is not used
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Ivan Schaller 2022-05-09 22:09:41 +02:00
parent a88b69da12
commit f977930774

View file

@ -195,7 +195,8 @@ def get_manga(
# add to skipped chapters list # add to skipped chapters list
skipped_chapters.append( skipped_chapters.append(
f"{chapter_infos['volume']}:{chapter_infos['chapter']}" f"{chapter_infos['volume']}:{chapter_infos['chapter']}"
) ) if manga_forcevol else skipped_chapters.append(chapter_infos["chapter"])
continue continue
# get filename for chapter # get filename for chapter