mirror of
https://github.com/solero/houdini.git
synced 2024-11-08 20:28:20 +00:00
Use create_task
instead of ensure_future
to create broadcast task
This commit is contained in:
parent
d6c73fc6d6
commit
42a3cefe80
@ -54,8 +54,7 @@ class SoundStudio:
|
||||
async def start_broadcasting(self):
|
||||
if not self.broadcasting:
|
||||
self.broadcasting = True
|
||||
loop = asyncio.get_event_loop()
|
||||
asyncio.ensure_future(self.broadcast_tracks(), loop=loop)
|
||||
asyncio.create_task(self.broadcast_tracks())
|
||||
|
||||
async def stop_broadcasting(self):
|
||||
if self.broadcasting:
|
||||
|
Loading…
Reference in New Issue
Block a user