diff --git a/picard/tagger.py b/picard/tagger.py index 659aaec59..6b65476bd 100644 --- a/picard/tagger.py +++ b/picard/tagger.py @@ -361,7 +361,7 @@ class Tagger(QtWidgets.QApplication): """Move `file` to recording `recordingid` on album `albumid`.""" self.window.setUpdatesEnabled(False) album = self.load_album(albumid) - file.move(album.unmatched_files) + album.run_when_loaded(partial(file.move, album.unmatched_files)) album.run_when_loaded(partial(album.match_files, [file], recordingid=recordingid)) self.window.setUpdatesEnabled(True)