diff --git a/NostrStreamer/Controllers/GameInfoController.cs b/NostrStreamer/Controllers/GameInfoController.cs index ea36485..777b964 100644 --- a/NostrStreamer/Controllers/GameInfoController.cs +++ b/NostrStreamer/Controllers/GameInfoController.cs @@ -21,7 +21,7 @@ public class GameInfoController(GameDb gameDb) : Controller } [HttpGet("{id}")] - public async Task GetGame([FromQuery] string id) + public async Task GetGame([FromRoute] string id) { var data = await gameDb.GetGame(id.Split(":")[1]);