Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

playlist viewer: fix track info for first track of a stopped current playlist

A playlist that hasn't finished and is resumed without starting
playback has its index set to 0 by empty_playlist_unlocked.
So ignore the index for stopped playlists.

Change-Id: I575ceacbcd2369eaa3ae4e47de7b2f7e999248f5

+1
+1
apps/playlist_viewer.c
··· 516 516 bool id3_retrieval_successful = false; 517 517 518 518 if (!viewer.playlist && 519 + (audio_status() & AUDIO_STATUS_PLAY) && 519 520 (playlist_get_resume_info(&viewer.current_playing_track) == current_track->index)) 520 521 { 521 522 copy_mp3entry(&id3, audio_current_track()); /* retrieve id3 from RAM */