mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
Fix bug in flatMap polyfill
This commit is contained in:
parent
9f23207536
commit
67e23f7f45
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name Bilibili Evolved (Offline)
|
// @name Bilibili Evolved (Offline)
|
||||||
// @version 133.90
|
// @version 133.91
|
||||||
// @description 增强哔哩哔哩Web端体验(离线版): 修复界面瑕疵, 删除广告, 使用夜间模式浏览, 下载视频或视频封面, 以及增加对触屏设备的支持等.
|
// @description 增强哔哩哔哩Web端体验(离线版): 修复界面瑕疵, 删除广告, 使用夜间模式浏览, 下载视频或视频封面, 以及增加对触屏设备的支持等.
|
||||||
// @author Grant Howard, Coulomb-G
|
// @author Grant Howard, Coulomb-G
|
||||||
// @copyright 2018, Grant Howrad (https://github.com/the1812)
|
// @copyright 2018, Grant Howrad (https://github.com/the1812)
|
||||||
@ -1036,8 +1036,7 @@ offlineData["https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/m
|
|||||||
.map(mapFunc)
|
.map(mapFunc)
|
||||||
.reduce((acc, it) => acc.concat(it), []);
|
.reduce((acc, it) => acc.concat(it), []);
|
||||||
};
|
};
|
||||||
flatMap.bind(this.styles);
|
return flatMap.bind(this.styles);
|
||||||
return flatMap;
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name Bilibili Evolved (Preview Offline)
|
// @name Bilibili Evolved (Preview Offline)
|
||||||
// @version 133.90
|
// @version 133.91
|
||||||
// @description 增强哔哩哔哩Web端体验(预览离线版): 修复界面瑕疵, 删除广告, 使用夜间模式浏览, 下载视频或视频封面, 以及增加对触屏设备的支持等.
|
// @description 增强哔哩哔哩Web端体验(预览离线版): 修复界面瑕疵, 删除广告, 使用夜间模式浏览, 下载视频或视频封面, 以及增加对触屏设备的支持等.
|
||||||
// @author Grant Howard, Coulomb-G
|
// @author Grant Howard, Coulomb-G
|
||||||
// @copyright 2018, Grant Howrad (https://github.com/the1812)
|
// @copyright 2018, Grant Howrad (https://github.com/the1812)
|
||||||
@ -1036,8 +1036,7 @@ offlineData["https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/m
|
|||||||
.map(mapFunc)
|
.map(mapFunc)
|
||||||
.reduce((acc, it) => acc.concat(it), []);
|
.reduce((acc, it) => acc.concat(it), []);
|
||||||
};
|
};
|
||||||
flatMap.bind(this.styles);
|
return flatMap.bind(this.styles);
|
||||||
return flatMap;
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|||||||
@ -984,8 +984,7 @@
|
|||||||
.map(mapFunc)
|
.map(mapFunc)
|
||||||
.reduce((acc, it) => acc.concat(it), []);
|
.reduce((acc, it) => acc.concat(it), []);
|
||||||
};
|
};
|
||||||
flatMap.bind(this.styles);
|
return flatMap.bind(this.styles);
|
||||||
return flatMap;
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|||||||
@ -984,8 +984,7 @@
|
|||||||
.map(mapFunc)
|
.map(mapFunc)
|
||||||
.reduce((acc, it) => acc.concat(it), []);
|
.reduce((acc, it) => acc.concat(it), []);
|
||||||
};
|
};
|
||||||
flatMap.bind(this.styles);
|
return flatMap.bind(this.styles);
|
||||||
return flatMap;
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user