优化location读取
This commit is contained in:
parent
005d012558
commit
ce112208d4
|
@ -55,10 +55,24 @@ namespace N_m3u8DL_RE.Common.Util
|
||||||
{
|
{
|
||||||
HttpResponseHeaders respHeaders = webResponse.Headers;
|
HttpResponseHeaders respHeaders = webResponse.Headers;
|
||||||
Logger.Debug(respHeaders.ToString());
|
Logger.Debug(respHeaders.ToString());
|
||||||
if (respHeaders != null && respHeaders.Location != null && respHeaders.Location.AbsoluteUri != url)
|
if (respHeaders != null && respHeaders.Location != null)
|
||||||
{
|
{
|
||||||
var redirectedUrl = respHeaders.Location.AbsoluteUri;
|
var redirectedUrl = "";
|
||||||
return await DoGetAsync(redirectedUrl, headers);
|
if (!respHeaders.Location.IsAbsoluteUri)
|
||||||
|
{
|
||||||
|
Uri uri1 = new Uri(url);
|
||||||
|
Uri uri2 = new Uri(uri1, respHeaders.Location);
|
||||||
|
redirectedUrl = uri2.ToString();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
redirectedUrl = respHeaders.Location.AbsoluteUri;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (redirectedUrl != url)
|
||||||
|
{
|
||||||
|
return await DoGetAsync(redirectedUrl, headers);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//手动将跳转后的URL设置进去, 用于后续取用
|
//手动将跳转后的URL设置进去, 用于后续取用
|
||||||
|
|
Loading…
Reference in New Issue