forked from uniborg/uniborg
Fix missing await
This commit is contained in:
parent
b34b1c516f
commit
23971d8a6a
|
@ -55,7 +55,7 @@ class Uniborg(TelegramClient):
|
||||||
async def _reconnect_nofail(self):
|
async def _reconnect_nofail(self):
|
||||||
while True:
|
while True:
|
||||||
try:
|
try:
|
||||||
self.connect()
|
await self.connect()
|
||||||
except ConnectionError:
|
except ConnectionError:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue