mirror of
https://github.com/TeamPGM/pyrogram.git
synced 2024-11-18 05:30:15 +00:00
Fix update_worker not being async
This commit is contained in:
parent
14feffce84
commit
301ba799cf
@ -108,9 +108,9 @@ class Dispatcher:
|
|||||||
|
|
||||||
self.groups[group].remove(handler)
|
self.groups[group].remove(handler)
|
||||||
|
|
||||||
def update_worker(self):
|
async def update_worker(self):
|
||||||
while True:
|
while True:
|
||||||
update = self.updates.get()
|
update = await self.updates.get()
|
||||||
|
|
||||||
if update is None:
|
if update is None:
|
||||||
break
|
break
|
||||||
|
Loading…
Reference in New Issue
Block a user