From d3ec2106cd9e00be7fd52954c288e612de1d6153 Mon Sep 17 00:00:00 2001 From: wisp3rwind <17089248+wisp3rwind@users.noreply.github.com> Date: Thu, 18 Mar 2021 18:37:15 +0100 Subject: [PATCH] replaygain: fix write/force flags on import This restores old behaviour. --- beetsplug/replaygain.py | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/beetsplug/replaygain.py b/beetsplug/replaygain.py index 8b9447bdb..d85a95022 100644 --- a/beetsplug/replaygain.py +++ b/beetsplug/replaygain.py @@ -1321,17 +1321,9 @@ class ReplayGainPlugin(BeetsPlugin): """ if self.config['auto']: if task.is_album: - self.handle_album( - task.album, - self.config['auto'].get(bool), - self.config['overwrite'].get(bool) - ) + self.handle_album(task.album, False) else: - self.handle_track( - task.item, - self.config['auto'].get(bool), - self.config['overwrite'].get(bool) - ) + self.handle_track(task.item, False) def commands(self): """Return the "replaygain" ui subcommand.