Partially implemented song compression #14

This commit is contained in:
amazing-username
2019-04-08 22:29:52 -04:00
parent 2911b9739b
commit 2d26d6ecdc
6 changed files with 128 additions and 67 deletions
+1 -2
View File
@@ -14,7 +14,7 @@ using Icarus.Models;
namespace Icarus.Controllers
{
[Route("api/Song/data")]
[Route("api/song/data")]
[ApiController]
public class SongDataController : ControllerBase
{
@@ -56,7 +56,6 @@ namespace Icarus.Controllers
song = await _songMgr.RetrieveSong(id);
return File(song.Data, "application/x-msdownload", _songMgr.SongDetails.Filename);
//return File(song.Data, "application/x-msdownload", "demo.zip");
}
[HttpPost]