#103: Adding checks to prevent .wav files from being uploaded:

This commit is contained in:
kdeng00
2024-08-05 20:12:52 -04:00
parent a89580ac70
commit 77030c6347
2 changed files with 4 additions and 2 deletions
+3 -2
View File
@@ -151,8 +151,9 @@ public class SongDataController : BaseController
switch (song.AudioType)
{
case "wav":
song = _songMgr.SaveSongToFileSystem(up.SongData, up.CoverArtData, song);
break;
// song = _songMgr.SaveSongToFileSystem(up.SongData, up.CoverArtData, song);
// TODO: Make sure the tmp file gets deleted
return BadRequest(".wav files are not supported");
case "flac":
song = _songMgr.SaveFlacSongToFileSystem(up.SongData, up.CoverArtData, song);
break;