刷新playlist时不应该更新init

This commit is contained in:
nilaoda 2022-10-31 02:43:43 +08:00
parent 3013c7895f
commit b04dc0f43c
1 changed files with 1 additions and 1 deletions

View File

@ -489,7 +489,7 @@ namespace N_m3u8DL_RE.Parser.Extractor
{
var match = newStreams.Where(n => n.ToShortString() == streamSpec.ToShortString());
if (match.Any())
streamSpec.Playlist = match.First().Playlist;
streamSpec.Playlist!.MediaParts = match.First().Playlist!.MediaParts; //不更新init
}
//这里才调用URL预处理器节省开销
await ProcessUrlAsync(streamSpecs);