Implemented functionality to download a song #11
This commit is contained in:
@@ -49,7 +49,7 @@ namespace Icarus.Controllers
|
||||
[HttpGet("{id}")]
|
||||
public ActionResult<Song> Get(int id)
|
||||
{
|
||||
Song song = _songMgr.RetrieveSongDetails(id);
|
||||
Song song = _songMgr.RetrieveSongDetails(id).Result;
|
||||
|
||||
return song;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user