diff --git a/radio/index.js b/radio/index.js index 220ad4a..aa61b61 100644 --- a/radio/index.js +++ b/radio/index.js @@ -70,7 +70,7 @@ function setRoutes() { ctx.body = await getRadioStatus(); }) .get('/lastsong', async ctx => { - ctx.body = await getLastPlayedSongs(2); + ctx.body = await getLastPlayedSongs(2)[0]; }); }