From d71a5486df896dedc4fd239702f577b2502a7813 Mon Sep 17 00:00:00 2001 From: GuardKenzie Date: Sun, 16 May 2021 20:58:45 +0000 Subject: [PATCH] Fixed an issue where the progress bar did not reset when starting the currently playing song again with the select action. --- bin/miniplayer | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/miniplayer b/bin/miniplayer index 39624c4..d44deff 100755 --- a/bin/miniplayer +++ b/bin/miniplayer @@ -532,6 +532,7 @@ class Player: if playlist_length > 0: self.client.play(self.selected_song % playlist_length) self.update_needed = True + self.last_song = None key = self.stdscr.getch()