mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 08:39:17 +01:00
Check 'auto' on import_begin
This commit is contained in:
parent
cc18beb12a
commit
eb8ba838e5
1 changed files with 3 additions and 1 deletions
|
|
@ -1556,7 +1556,9 @@ class ReplayGainPlugin(BeetsPlugin):
|
|||
"""
|
||||
threads = self.config['threads'].get(int)
|
||||
|
||||
if self.config['parallel_on_import'] and threads:
|
||||
if self.config['parallel_on_import'] \
|
||||
and self.config['auto'] \
|
||||
and threads:
|
||||
self.open_pool(threads)
|
||||
|
||||
def import_end(self, paths):
|
||||
|
|
|
|||
Loading…
Reference in a new issue