summaryrefslogtreecommitdiff
path: root/libpiano
diff options
context:
space:
mode:
Diffstat (limited to 'libpiano')
-rw-r--r--libpiano/src/main.c2
-rw-r--r--libpiano/src/piano.h2
-rw-r--r--libpiano/src/xml.c2
3 files changed, 5 insertions, 1 deletions
diff --git a/libpiano/src/main.c b/libpiano/src/main.c
index 7c9115b..1839c0c 100644
--- a/libpiano/src/main.c
+++ b/libpiano/src/main.c
@@ -142,6 +142,7 @@ void PianoDestroyPlaylist (PianoHandle_t *ph) {
PianoFree (curSong->userSeed, 0);
PianoFree (curSong->identity, 0);
PianoFree (curSong->stationId, 0);
+ PianoFree (curSong->album, 0);
lastSong = curSong;
curSong = curSong->next;
PianoFree (lastSong, sizeof (*lastSong));
@@ -201,6 +202,7 @@ PianoReturn_t PianoConnect (PianoHandle_t *ph, char *user, char *password) {
requestStr = PianoEncryptString (requestStrPlain);
snprintf (url, sizeof (url), PIANO_SECURE_RPC_URL "rid=%s"
"&method=authenticateListener", ph->routeId);
+
if ((ret = PianoHttpPost (ph->curlHandle, url, requestStr, &retStr)) ==
PIANO_RET_OK) {
ret = PianoXmlParseUserinfo (ph, retStr);
diff --git a/libpiano/src/piano.h b/libpiano/src/piano.h
index 3dc512f..ce68c48 100644
--- a/libpiano/src/piano.h
+++ b/libpiano/src/piano.h
@@ -91,7 +91,7 @@ struct PianoSong {
/* disabled: artRadio */
//char *audioEncoding; /* FIXME: should be enum: mp3 or aacplus */
char *stationId;
- //char *album;
+ char *album;
//char *artistMusicId;
char *userSeed;
/* disabled: albumExplorerUrl */
diff --git a/libpiano/src/xml.c b/libpiano/src/xml.c
index 377affb..a144255 100644
--- a/libpiano/src/xml.c
+++ b/libpiano/src/xml.c
@@ -255,6 +255,8 @@ void PianoXmlParsePlaylistCb (char *key, xmlNode *value, void *data) {
}
} else if (strcmp ("stationId", key) == 0) {
song->stationId = strdup (valueStr);
+ } else if (strcmp ("albumTitle", key) == 0) {
+ song->album = strdup (valueStr);
}
}