osu-tournament-rating / otr-api

API powering osu! Tournament Rating
https://otr.stagec.xyz/
4 stars 2 forks source link

Fix 500 status when `GET` `/matches/{id}` does not exist #314

Closed myssto closed 1 month ago

myssto commented 1 month ago

The bug comes from using .FirstAsync() which will throw an exception if a result is not found, instead of .FirstOrDefaultAsync() which produces a null value. The endpoint now fails gracefully as expected.

Closes #195