mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
Fix bug
This commit is contained in:
parent
00b3ea2977
commit
a0f1ddfd13
@ -85,7 +85,7 @@
|
|||||||
const xhr = new XMLHttpRequest();
|
const xhr = new XMLHttpRequest();
|
||||||
xhr.addEventListener("load", () =>
|
xhr.addEventListener("load", () =>
|
||||||
{
|
{
|
||||||
const data = JSON.parse(xhr.responseText).data;
|
const data = JSON.parse(xhr.responseText.replace("http:", "https:")).data;
|
||||||
if (data.quality !== this.format.quality)
|
if (data.quality !== this.format.quality)
|
||||||
{
|
{
|
||||||
reject("获取下载链接失败, 请确认当前账号有下载权限后重试.");
|
reject("获取下载链接失败, 请确认当前账号有下载权限后重试.");
|
||||||
@ -93,8 +93,8 @@
|
|||||||
const urls = data.durl;
|
const urls = data.durl;
|
||||||
this.fragments = urls.map(it => new VideoInfoFragment(
|
this.fragments = urls.map(it => new VideoInfoFragment(
|
||||||
it.length, it.size,
|
it.length, it.size,
|
||||||
it.url.replace("http:", "https:"),
|
it.url,
|
||||||
it.backup_url.map(it => it.replace("http:", "https:"))
|
it.backup_url
|
||||||
));
|
));
|
||||||
if (this.fragments.length > 1)
|
if (this.fragments.length > 1)
|
||||||
{
|
{
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user