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.