The app is technically functional

This commit is contained in:
2025-10-10 22:19:39 +10:00
parent a2f2b74228
commit 55499d2d7f
8 changed files with 357 additions and 2 deletions

View File

@@ -8,6 +8,7 @@
#include "../configHandler.h"
#include "../libopensubsonic/httpclient.h"
#include "../libopensubsonic/endpoint_getStarred.h"
#include "../player/player.h"
extern configHandler_config_t* configObj;
bool bLikedSongsShow = false;
@@ -166,6 +167,7 @@ void showLikedSongs() {
if (selectedSong != -1) {
printf("Song: %s (%s)\n", starredStruct->songs[selectedSong].title,
starredStruct->songs[selectedSong].id);
OSSPlayer_QueueAppend(starredStruct->songs[selectedSong].id);
selectedSong = -1;
}