diff --git a/Server/Source/Routes/Downloads.ts b/Server/Source/Routes/Downloads.ts index 6c4652f..edd8df3 100644 --- a/Server/Source/Routes/Downloads.ts +++ b/Server/Source/Routes/Downloads.ts @@ -73,7 +73,7 @@ async (req, res) => { }); App.get("/:InternalID", -RequireAuthentication() +RequireAuthentication(), async (req, res, next) => { const SongData = await Song.findOne({ where: { ID: req.params.InternalID }, relations: { Author: true } }); if (!SongData)