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 1/3] 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() From bdfba51410d11779c1d9a807ea749f0890f16ff7 Mon Sep 17 00:00:00 2001 From: Dan <14043624+delivrance@users.noreply.github.com> Date: Tue, 30 Jan 2018 13:35:23 +0100 Subject: [PATCH 2/3] Revert "Switch back to port 443" This reverts commit 89daf09 --- 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 d912da74..aa958a7a 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, 443) + self.address = (ipv4, 80) self.proxy = proxy self.mode = self.MODES.get(mode, TCPAbridged) self.lock = threading.Lock() From 19f861964e03d8e52df12df54846353188225c8d Mon Sep 17 00:00:00 2001 From: Dan <14043624+delivrance@users.noreply.github.com> Date: Tue, 30 Jan 2018 13:45:47 +0100 Subject: [PATCH 3/3] Update to v0.5.0 --- pyrogram/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyrogram/__init__.py b/pyrogram/__init__.py index 78942791..09545a6c 100644 --- a/pyrogram/__init__.py +++ b/pyrogram/__init__.py @@ -23,7 +23,7 @@ __copyright__ = "Copyright (C) 2017-2018 Dan Tès