We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1d3af7 commit 8e71bf8Copy full SHA for 8e71bf8
BilibiliVideoDownloader.user.js
@@ -2,7 +2,7 @@
2
// @name Bilibili Video Downloader
3
// @name:zh 哔哩哔哩视频下载器
4
// @namespace https://github.com/jc3213/userscript
5
-// @version 1.13.0
+// @version 1.13.1
6
// @description Download videos from Bilibili (No Bangumi)
7
// @description:zh 下载哔哩哔哩视频(不支持番剧)
8
// @author jc3213
@@ -122,8 +122,16 @@ function bVideoItems(json) {
122
}
123
124
function bVideoExtractor(json) {
125
- json?.video?.forEach(bVideoItems);
126
- json?.audio?.forEach(bVideoItems);
+ if (json?.video) {
+ for (let i of json.video) {
127
+ bVideoItems(i);
128
+ }
129
130
+ if (json?.audio) {
131
+ for (let i of json.audio) {
132
133
134
135
136
137
async function bVideoGetter(vid, playurl) {
0 commit comments