From 5394c3f3247b32b664d4eaca6a75ed3ef5d6acbd Mon Sep 17 00:00:00 2001 From: lay295 Date: Mon, 17 Apr 2023 18:30:54 -0500 Subject: [PATCH] Fix #676 --- TwitchDownloaderCore/TwitchHelper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TwitchDownloaderCore/TwitchHelper.cs b/TwitchDownloaderCore/TwitchHelper.cs index 4906c4bf..695669f4 100644 --- a/TwitchDownloaderCore/TwitchHelper.cs +++ b/TwitchDownloaderCore/TwitchHelper.cs @@ -58,7 +58,7 @@ public static async Task GetVideoPlaylist(int videoId, string token, s { var request = new HttpRequestMessage() { - RequestUri = new Uri(String.Format("http://usher.twitch.tv/vod/{0}?nauth={1}&nauthsig={2}&allow_source=true&player=twitchweb", videoId, token, sig)), + RequestUri = new Uri(String.Format("http://usher.ttvnw.net/vod/{0}?nauth={1}&nauthsig={2}&allow_source=true&player=twitchweb", videoId, token, sig)), Method = HttpMethod.Get }; request.Headers.Add("Client-ID", "kimne78kx3ncx6brgo4mv6wki5h1ko");