diff --git a/radio/index.js b/radio/index.js index aa61b61..793a317 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)[0]; + ctx.body = (await getLastPlayedSongs(2))[0]; }); }