From daf0281ef05fcd159ef4083e5a986b477a5aa62c Mon Sep 17 00:00:00 2001 From: Jonas Weinz Date: Mon, 1 Apr 2019 17:13:08 +0200 Subject: [PATCH] fixing wrong revoke_time handling --- connection_handler.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/connection_handler.py b/connection_handler.py index 1a02e68..0bcc118 100644 --- a/connection_handler.py +++ b/connection_handler.py @@ -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 } }