mirror of
https://github.com/solero/houdini.git
synced 2025-08-09 20:24:05 +00:00
Use create_task
instead of ensure_future
to create broadcast task
This commit is contained in:
@@ -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:
|
||||
|
Reference in New Issue
Block a user