Implemented functionality to download a song #11

This commit is contained in:
amazing-username
2019-03-21 22:36:57 -04:00
parent b7723b2cba
commit e4f050c362
5 changed files with 165 additions and 40 deletions
+1 -1
View File
@@ -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;
}