From 89daf095000741d0f72c06b58d1ed2502ef96d29 Mon Sep 17 00:00:00 2001 From: Dan <14043624+delivrance@users.noreply.github.com> Date: Mon, 29 Jan 2018 14:20:16 +0100 Subject: [PATCH] Switch back to port 443 --- pyrogram/connection/connection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyrogram/connection/connection.py b/pyrogram/connection/connection.py index aa958a7a..d912da74 100644 --- a/pyrogram/connection/connection.py +++ b/pyrogram/connection/connection.py @@ -33,7 +33,7 @@ class Connection: } def __init__(self, ipv4: str, proxy: type, mode: int = 1): - self.address = (ipv4, 80) + self.address = (ipv4, 443) self.proxy = proxy self.mode = self.MODES.get(mode, TCPAbridged) self.lock = threading.Lock()