Skip to content

Commit

Permalink
Fix #676
Browse files Browse the repository at this point in the history
  • Loading branch information
lay295 committed Apr 17, 2023
1 parent 454faac commit 5394c3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TwitchDownloaderCore/TwitchHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public static async Task<string[]> 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");
Expand Down

0 comments on commit 5394c3f

Please sign in to comment.