2
0
mirror of https://github.com/pyrogram/pyrogram synced 2025-08-29 05:18:10 +00:00

Make sure Session is always stopped upon exceptions in Client.get_file

This commit is contained in:
Eric Blundell 2018-05-01 01:39:58 -05:00
parent debc459686
commit 11d0eb6ea1

View File

@ -2696,13 +2696,17 @@ class Client:
)
session.start()
try:
session.send(
functions.auth.ImportAuthorization(
id=exported_auth.id,
bytes=exported_auth.bytes
)
)
except Exception as e:
session.stop()
raise e
else:
session = Session(
dc_id,