From 7f768e8c653b899446a4199fa8a6854acd795ed4 Mon Sep 17 00:00:00 2001 From: Janis Date: Wed, 10 Dec 2025 22:21:28 +0100 Subject: [PATCH] feat: FRO-31 Assemble In Game Component --- knockoutwhistweb/app/controllers/StatusController.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/knockoutwhistweb/app/controllers/StatusController.scala b/knockoutwhistweb/app/controllers/StatusController.scala index 72daedb..134a1f0 100644 --- a/knockoutwhistweb/app/controllers/StatusController.scala +++ b/knockoutwhistweb/app/controllers/StatusController.scala @@ -34,7 +34,7 @@ class StatusController @Inject()( Json.obj( "status" -> "authenticated", "username" -> user.name, - "inGame" -> "false" + "inGame" -> false ) ) } else { @@ -43,7 +43,7 @@ class StatusController @Inject()( Json.obj( "status" -> "authenticated", "username" -> user.name, - "inGame" -> "true", + "inGame" -> true, "gameId" -> game.id ) )