fixing wrong revoke_time handling

This commit is contained in:
Jonas Weinz 2019-04-01 17:13:08 +02:00
parent 3502790333
commit daf0281ef0

View File

@ -264,7 +264,7 @@ class ConnectionHandler(object):
"type": "match_update",
"data": {
"id": m.id,
"revoke_time": m.revoke_time,
"revoke_time": m.get_sql_revoke_time()
"match_state": state
}
}
@ -277,7 +277,7 @@ class ConnectionHandler(object):
"type": "match_update",
"data": {
"id": m.id,
"revoke_time": m.revoke_time,
"revoke_time": m.get_sql_revoke_time(),
"match_state": state
}
}