fix: reset lastPacket on signout

This commit is contained in:
Zamitto
2025-02-02 20:15:27 -03:00
parent 2e85363966
commit 34e439bd66
12 changed files with 34 additions and 28 deletions

View File

@@ -46,9 +46,9 @@ const addGameToLibrary = async (
await gamesSublevel.put(levelKeys.game(shop, objectId), game);
updateLocalUnlockedAchivements(game!);
updateLocalUnlockedAchivements(game);
createGame(game!).catch(() => {});
createGame(game).catch(() => {});
}
};