diff --git a/app/playlists.py b/app/playlists.py index 34a7b62..664eb56 100644 --- a/app/playlists.py +++ b/app/playlists.py @@ -422,7 +422,7 @@ class PlaylistTab(QTableWidget): # Mark next-track row as current current_row = self._get_next_track_row() - if not current_row: + if current_row is None: return self._set_current_track_row(current_row)