fix: adding bit validation to is deleted

This commit is contained in:
Chubby Granny Chaser 2025-01-22 09:43:28 +00:00
parent f5532fa26f
commit 4c5c602775
No known key found for this signature in database
8 changed files with 23 additions and 23 deletions

View file

@ -86,7 +86,7 @@ const migrateFromSqlite = async () => {
playTimeInMilliseconds: game.playTimeInMilliseconds,
lastTimePlayed: game.lastTimePlayed,
remoteId: game.remoteId,
isDeleted: game.isDeleted,
isDeleted: game.isDeleted === 1,
},
}))
);