Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

针对有-items参数时,视频的序号应该取整个合集中的序号,而不是取被下载的第几个 #1317

Merged
merged 5 commits into from
Feb 21, 2024
2 changes: 1 addition & 1 deletion extractors/bilibili/bilibili.go
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ func multiEpisodeDownload(url, html string, extractOption extractors.Options, pa
aid: u.Aid,
bvid: u.BVid,
cid: u.Cid,
subtitle: fmt.Sprintf("%s P%d", u.Title, dataIndex+1),
subtitle: fmt.Sprintf("%s P%d", u.Title, index+1),
}
go func(index int, options bilibiliOptions, extractedData []*extractors.Data) {
defer wgp.Done()
Expand Down
Loading