fix
This commit is contained in:
parent
cba3643e02
commit
188c8c1b1a
@ -15,10 +15,10 @@ Session.notice_displayed = True
|
|||||||
|
|
||||||
def get_client():
|
def get_client():
|
||||||
config._reload_maybe()
|
config._reload_maybe()
|
||||||
pyrogram_sesssion = config.pyrogram_session.replace('.session', '')
|
pyrogram_session = config.pyrogram_session.replace('.session', '')
|
||||||
if not pyrogram_sesssion or not config.pyrogram_app_id or config.pyrogram_app_hash:
|
if not pyrogram_session or not config.pyrogram_app_id or not config.pyrogram_app_hash:
|
||||||
raise RuntimeError('Pyrogram is not configured')
|
raise RuntimeError('Pyrogram is not configured')
|
||||||
session_path = os.path.relpath(default_storage.path(pyrogram_sesssion))
|
session_path = os.path.relpath(default_storage.path(pyrogram_session))
|
||||||
|
|
||||||
return Client(session_path, config.pyrogram_app_id, config.pyrogram_app_hash)
|
return Client(session_path, config.pyrogram_app_id, config.pyrogram_app_hash)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user