mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2025-02-20 05:20:57 +03:00
Rename cdn parameter to _cdn
This commit is contained in:
parent
d28f370ab6
commit
4cd7e1711e
|
@ -154,7 +154,7 @@ class TelegramBareClient:
|
||||||
|
|
||||||
# region Connecting
|
# region Connecting
|
||||||
|
|
||||||
def connect(self, _exported_auth=None, _sync_updates=True, cdn=False):
|
def connect(self, _exported_auth=None, _sync_updates=True, _cdn=False):
|
||||||
"""Connects to the Telegram servers, executing authentication if
|
"""Connects to the Telegram servers, executing authentication if
|
||||||
required. Note that authenticating to the Telegram servers is
|
required. Note that authenticating to the Telegram servers is
|
||||||
not the same as authenticating the desired user itself, which
|
not the same as authenticating the desired user itself, which
|
||||||
|
@ -171,7 +171,7 @@ class TelegramBareClient:
|
||||||
native data center, raising a "UserMigrateError", and
|
native data center, raising a "UserMigrateError", and
|
||||||
calling .disconnect() in the process.
|
calling .disconnect() in the process.
|
||||||
|
|
||||||
If 'cdn' is False, methods that are not allowed on such data
|
If '_cdn' is False, methods that are not allowed on such data
|
||||||
centers won't be invoked.
|
centers won't be invoked.
|
||||||
"""
|
"""
|
||||||
self._main_thread_ident = threading.get_ident()
|
self._main_thread_ident = threading.get_ident()
|
||||||
|
@ -198,7 +198,7 @@ class TelegramBareClient:
|
||||||
self._init_connection(ImportAuthorizationRequest(
|
self._init_connection(ImportAuthorizationRequest(
|
||||||
_exported_auth.id, _exported_auth.bytes
|
_exported_auth.id, _exported_auth.bytes
|
||||||
))
|
))
|
||||||
elif not cdn:
|
elif not _cdn:
|
||||||
TelegramBareClient._dc_options = \
|
TelegramBareClient._dc_options = \
|
||||||
self._init_connection(GetConfigRequest()).dc_options
|
self._init_connection(GetConfigRequest()).dc_options
|
||||||
|
|
||||||
|
@ -207,7 +207,7 @@ class TelegramBareClient:
|
||||||
_exported_auth.id, _exported_auth.bytes
|
_exported_auth.id, _exported_auth.bytes
|
||||||
))
|
))
|
||||||
|
|
||||||
if TelegramBareClient._dc_options is None and not cdn:
|
if TelegramBareClient._dc_options is None and not _cdn:
|
||||||
TelegramBareClient._dc_options = \
|
TelegramBareClient._dc_options = \
|
||||||
self(GetConfigRequest()).dc_options
|
self(GetConfigRequest()).dc_options
|
||||||
|
|
||||||
|
@ -216,7 +216,7 @@ class TelegramBareClient:
|
||||||
# another data center and this would raise UserMigrateError)
|
# another data center and this would raise UserMigrateError)
|
||||||
# to also assert whether the user is logged in or not.
|
# to also assert whether the user is logged in or not.
|
||||||
self._user_connected = True
|
self._user_connected = True
|
||||||
if _sync_updates and not cdn:
|
if _sync_updates and not _cdn:
|
||||||
try:
|
try:
|
||||||
self.sync_updates()
|
self.sync_updates()
|
||||||
self._set_connected_and_authorized()
|
self._set_connected_and_authorized()
|
||||||
|
@ -231,7 +231,8 @@ class TelegramBareClient:
|
||||||
self.disconnect()
|
self.disconnect()
|
||||||
return self.connect(
|
return self.connect(
|
||||||
_exported_auth=_exported_auth,
|
_exported_auth=_exported_auth,
|
||||||
_sync_updates=_sync_updates
|
_sync_updates=_sync_updates,
|
||||||
|
_cdn=_cdn
|
||||||
)
|
)
|
||||||
|
|
||||||
except (RPCError, ConnectionError) as error:
|
except (RPCError, ConnectionError) as error:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user