From eb8ba838e5f4e3f1c8fe7f2b14a7331d83e51c0c Mon Sep 17 00:00:00 2001 From: ybnd Date: Tue, 22 Dec 2020 12:45:28 +0100 Subject: [PATCH] Check 'auto' on import_begin --- beetsplug/replaygain.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/beetsplug/replaygain.py b/beetsplug/replaygain.py index 5dba3ad60..9d6fa23c4 100644 --- a/beetsplug/replaygain.py +++ b/beetsplug/replaygain.py @@ -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):