From 5f1e7ffd0cd19e6a342733de7f00c49378fa463f Mon Sep 17 00:00:00 2001 From: shortcutme Date: Wed, 5 Sep 2018 14:32:43 +0200 Subject: [PATCH] Correct sent time with timecorrection value --- src/Connection/Connection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Connection/Connection.py b/src/Connection/Connection.py index 10a0111f..04cdc7ea 100644 --- a/src/Connection/Connection.py +++ b/src/Connection/Connection.py @@ -336,7 +336,7 @@ class Connection(object): "rev": config.rev, "crypt_supported": crypt_supported, "crypt": self.crypt, - "time": int(time.time()) + "time": int(time.time() + self.server.timecorrection) } if self.target_onion: handshake["onion"] = self.target_onion