From 65d14644b4084bfcd164d32772a0d0edf3904605 Mon Sep 17 00:00:00 2001 From: SergeantPanda Date: Sun, 12 Apr 2026 11:36:08 -0500 Subject: [PATCH] Bug Fix: Fixed the `next_stream` rotation endpoint applying the same class of bug --- apps/proxy/ts_proxy/views.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/proxy/ts_proxy/views.py b/apps/proxy/ts_proxy/views.py index b3ea295a..da1c29f1 100644 --- a/apps/proxy/ts_proxy/views.py +++ b/apps/proxy/ts_proxy/views.py @@ -929,7 +929,8 @@ def next_stream(request, channel_id): channel_id, stream_info["url"], stream_info["user_agent"], - next_stream_id, # Pass the stream_id to be stored in Redis + next_stream_id, + stream_info.get("m3u_profile_id"), ) if result.get("status") == "error":