getAllGames returnt nicht alle Attribute von der game Klasse #45

Merged
flixcoo merged 20 commits from bug/37-getallgames-returnt-nicht-alle-attribute-von-der-game-klasse into development 2025-11-22 15:22:11 +00:00
Showing only changes of commit 24f18f5c65 - Show all commits

View File

@@ -25,7 +25,7 @@ class PlayerGroupDao extends DatabaseAccessor<AppDatabase>
return false; return false;
} }
if (await db.playerDao.playerExists(playerId: player.id) == false) { if (!await db.playerDao.playerExists(playerId: player.id)) {
db.playerDao.addPlayer(player: player); db.playerDao.addPlayer(player: player);
} }