AIService: add missing super().process_frame()

This commit is contained in:
Aleix Conchillo Flaqué
2024-12-12 17:25:38 -08:00
parent 10f854aeba
commit 752720b4d5

View File

@@ -110,6 +110,8 @@ class AIService(FrameProcessor):
logger.warning(f"Unknown setting for {self.name} service: {key}")
async def process_frame(self, frame: Frame, direction: FrameDirection):
await super().process_frame(frame, direction)
if isinstance(frame, StartFrame):
await self.start(frame)
elif isinstance(frame, CancelFrame):