Skip to content

Commit

Permalink
修正MPD拼接BaseUrl逻辑
Browse files Browse the repository at this point in the history
  • Loading branch information
nilaoda committed Feb 10, 2021
1 parent e1b591b commit c2eb8a6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion N_m3u8DL-CLI/MPDParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ string GetBaseUrl(string url)
{
mpdBaseUrl += "/";
}
baseUrl = mpdBaseUrl + baseUrl;
baseUrl = CombineURL(mpdBaseUrl, baseUrl);
}
var representationId = GetAttribute("id");
var lang = GetAttribute("lang");
Expand Down
4 changes: 3 additions & 1 deletion N_m3u8DL-CLI/changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -318,4 +318,6 @@
- 优化跳过PNG Header的算法
2021年2月2日
- 独播库自动加入referer
- 修复气球云
- 修复气球云
2021年2月10日
- 修正MPD拼接BaseUrl逻辑

0 comments on commit c2eb8a6

Please sign in to comment.