tsk-#76: Formatting

This commit is contained in:
phoenix
2025-03-11 21:42:25 -04:00
parent 0677a4ddbc
commit 6f1e918f2f
@@ -37,7 +37,8 @@ public class SongStreamController : BaseController
var context = new SongContext(_config!.GetConnectionString("DefaultConnection")!);
var song = context.Songs!.FirstOrDefault(sng => sng.Id == id);
if (song == null) {
if (song == null)
{
return BadRequest();
}
var tokenManager = new Managers.TokenManager(this._config!);