diff --git a/app/musicmuster.py b/app/musicmuster.py index ad1df2a..c566e8e 100755 --- a/app/musicmuster.py +++ b/app/musicmuster.py @@ -265,7 +265,8 @@ class Window(QMainWindow, Ui_MainWindow): self.playing = False # Clean up metadata - self.previous_track = self.current_track + if self.current_track: + self.previous_track = self.current_track if self.current_track_playlist_tab: self.current_track_playlist_tab.play_stopped() self.current_track_playlist_tab.clear_current()