diff --git a/qt/aqt/sound.py b/qt/aqt/sound.py index 6431272c8..2b05c1be9 100644 --- a/qt/aqt/sound.py +++ b/qt/aqt/sound.py @@ -87,7 +87,7 @@ class AVPlayer: def play_tags(self, tags: List[AVTag]) -> None: """Clear the existing queue, then start playing provided tags.""" - self._enqueued = tags + self._enqueued = tags[:] if self.interrupt_current_audio: self._stop_if_playing() self._play_next_if_idle()