diff --git a/getstream/video/rtc/track_util.py b/getstream/video/rtc/track_util.py index 1ef61c79..ced1ef8c 100644 --- a/getstream/video/rtc/track_util.py +++ b/getstream/video/rtc/track_util.py @@ -1777,7 +1777,7 @@ def stop(self): # Stop the underlying track if it has a stop method if hasattr(self._track, "stop"): try: - self._track.stop_audio() + self._track.stop() except Exception as e: logger.error(f"Error stopping track: {e}")