forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2022-09-05 23:43:36 +02:00
parent 28e9064e28
commit de46a6e519
1 changed files with 1 additions and 1 deletions

View File

@ -311,7 +311,7 @@ def purge_bad_games():
for game in games:
game_state = json.loads(game.game_state)
if (game_state.status != "active"):
if (game_state['status'] != "active"):
game.active = False
g.db.add(game)