Skip to content

Commit 99cc5d0

Browse files
committed
fix: missing await #225
1 parent f5a2602 commit 99cc5d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/core/handler/AudioHandler.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ async def enqueue_to_bytes(self) -> bytes:
190190

191191
# NOTE: 这里的逻辑类似 goto
192192
async with cancel_on_disconnect(self.current_request):
193-
return self._enqueue_to_bytes()
193+
return await self._enqueue_to_bytes()
194194

195195
logger.debug(f"disconnected")
196196
self.interrupt()

0 commit comments

Comments
 (0)