对于MPD不给默认BaseUrl

This commit is contained in:
nilaoda 2022-06-20 00:06:48 +08:00
parent d563e0b87d
commit 5404b56c40
1 changed files with 0 additions and 2 deletions

View File

@ -32,8 +32,6 @@ namespace N_m3u8DL_RE.Parser.Extractor
this.MpdUrl = parserConfig.Url ?? string.Empty; this.MpdUrl = parserConfig.Url ?? string.Empty;
if (!string.IsNullOrEmpty(parserConfig.BaseUrl)) if (!string.IsNullOrEmpty(parserConfig.BaseUrl))
this.BaseUrl = parserConfig.BaseUrl; this.BaseUrl = parserConfig.BaseUrl;
else
this.BaseUrl = this.MpdUrl;
} }