From 9f53aa0b04fe47ee2af965aeaa27107952b94838 Mon Sep 17 00:00:00 2001 From: beo3000 Date: Sat, 27 Dec 2025 10:54:21 +0100 Subject: [PATCH] fix set club guid --- src/Koogle.Application/Services/GamePersistenceService.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Koogle.Application/Services/GamePersistenceService.cs b/src/Koogle.Application/Services/GamePersistenceService.cs index b4b1f58..19801b1 100644 --- a/src/Koogle.Application/Services/GamePersistenceService.cs +++ b/src/Koogle.Application/Services/GamePersistenceService.cs @@ -50,7 +50,8 @@ public class GamePersistenceService : IGamePersistenceService game.GamePersons.Add(new GamePerson { GameId = game.Id, - PersonId = playerId + PersonId = playerId, + ClubId = dto.ClubId }); }