diff --git a/NostrStreamer/Controllers/GameInfoController.cs b/NostrStreamer/Controllers/GameInfoController.cs index 356482d..63eceee 100644 --- a/NostrStreamer/Controllers/GameInfoController.cs +++ b/NostrStreamer/Controllers/GameInfoController.cs @@ -23,7 +23,7 @@ public class GameInfoController(GameDb gameDb) : Controller [HttpGet("{id}")] public async Task GetGame([FromQuery] string id) { - var data = await gameDb.GetGame(id); + var data = await gameDb.GetGame(id.Split(":")[1]); return Json(data?.ToGameInfo(), new JsonSerializerSettings() {