aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgnattu <gnattu@users.noreply.github.com>2024-03-23 21:08:49 +0800
committerGitHub <noreply@github.com>2024-03-23 07:08:49 -0600
commit564fdfec93cfb03b987f1afe1f5edbd9160fdc12 (patch)
tree9ef45ca2d602a393914806a2d80c09d2248af0e5
parentd9e35a969f939027e306309ab916a79366028138 (diff)
fix: use a more recent UA (#11199)
-rw-r--r--src/Jellyfin.LiveTv/TunerHosts/M3UTunerHost.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Jellyfin.LiveTv/TunerHosts/M3UTunerHost.cs b/src/Jellyfin.LiveTv/TunerHosts/M3UTunerHost.cs
index 3666d342e..8d52151cb 100644
--- a/src/Jellyfin.LiveTv/TunerHosts/M3UTunerHost.cs
+++ b/src/Jellyfin.LiveTv/TunerHosts/M3UTunerHost.cs
@@ -150,7 +150,7 @@ namespace Jellyfin.LiveTv.TunerHosts
{
// Use user-defined user-agent. If there isn't one, make it look like a browser.
httpHeaders[HeaderNames.UserAgent] = string.IsNullOrWhiteSpace(info.UserAgent) ?
- "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.85 Safari/537.36" :
+ "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36" :
info.UserAgent;
}