Fixed an issue where the progress bar did not reset when starting the currently playing song again with the select action.

This commit is contained in:
GuardKenzie
2021-05-16 20:58:45 +00:00
parent 98c1e1e772
commit d71a5486df

View File

@ -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()