user_idle_processor: add missing parent cleanup()

This commit is contained in:
Aleix Conchillo Flaqué
2025-01-25 00:27:51 -08:00
parent bf5ced18b2
commit a3a6adbd17

View File

@@ -156,6 +156,7 @@ class UserIdleProcessor(FrameProcessor):
async def cleanup(self) -> None:
"""Cleans up resources when processor is shutting down."""
await super().cleanup()
if self._idle_task: # Only stop if task exists
await self._stop()