Skip to content

Commit b9068d2

Browse files
authored
Merge branch 'main' into add-leeway-to-token-iat
2 parents 050b0e6 + 66ffc79 commit b9068d2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

getstream/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = "2.5.15"
1+
VERSION = "2.5.16"

getstream/video/rtc/track_util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1777,7 +1777,7 @@ def stop(self):
17771777
# Stop the underlying track if it has a stop method
17781778
if hasattr(self._track, "stop"):
17791779
try:
1780-
self._track.stop_audio()
1780+
self._track.stop()
17811781
except Exception as e:
17821782
logger.error(f"Error stopping track: {e}")
17831783

getstream/video/rtc/tracks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ async def _update_subscriptions(self):
198198

199199
async def handle_track_published(self, event):
200200
"""Handle new remote track publications from the SFU."""
201-
logger.error(
201+
logger.info(
202202
f"Handling track published: {event.user_id} - {event.session_id} - {event.type}"
203203
)
204204
try:

0 commit comments

Comments
 (0)