From d3f03145e7c9db19be4460e435b6805060d7ddd3 Mon Sep 17 00:00:00 2001 From: dekzter Date: Thu, 20 Mar 2025 17:32:34 -0400 Subject: [PATCH] profile_value needs to be ID so we can identify it later --- apps/proxy/ts_proxy/url_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/proxy/ts_proxy/url_utils.py b/apps/proxy/ts_proxy/url_utils.py index e478c1c0..059a672f 100644 --- a/apps/proxy/ts_proxy/url_utils.py +++ b/apps/proxy/ts_proxy/url_utils.py @@ -54,7 +54,7 @@ def generate_stream_url(channel_id: str) -> Tuple[str, str, bool]: transcode = True # Get profile name as string - profile_value = str(stream_profile) + profile_value = stream_profile.id return stream_url, stream_user_agent, transcode, profile_value