mirror of
https://github.com/beetbox/beets.git
synced 2025-12-16 21:54:07 +01:00
Fix incremental_skip_later bug from #2782
This commit is contained in:
parent
731d80d0ec
commit
5f26ec6db9
1 changed files with 4 additions and 2 deletions
|
|
@ -577,8 +577,10 @@ class ImportTask(BaseImportTask):
|
|||
# Update progress.
|
||||
if session.want_resume:
|
||||
self.save_progress()
|
||||
if (session.config['incremental'] and
|
||||
not session.config['incremental_skip_later']):
|
||||
if session.config['incremental'] and not (
|
||||
# Should we skip recording to incremental list?
|
||||
self.skip and session.config['incremental_skip_later']
|
||||
):
|
||||
self.save_history()
|
||||
|
||||
self.cleanup(copy=session.config['copy'],
|
||||
|
|
|
|||
Loading…
Reference in a new issue