Check 'auto' on import_begin

This commit is contained in:
ybnd 2020-12-22 12:45:28 +01:00
parent cc18beb12a
commit eb8ba838e5

View file

@ -1556,7 +1556,9 @@ class ReplayGainPlugin(BeetsPlugin):
""" """
threads = self.config['threads'].get(int) 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) self.open_pool(threads)
def import_end(self, paths): def import_end(self, paths):