Momo707577045 / m3u8-downloader

m3u8 视频在线提取工具
5.97k stars 1.15k forks source link

关于 d29b434 这个提交 #36

Closed wc7086 closed 3 years ago

wc7086 commented 3 years ago

这段代码的意义是什么? 是因为如果当前页面是http协议,无法正常下载https的m3u8,当前页面是https就无法正常下载http的m3u8吗?

else if (this.url.indexOf(location.protocol) === -1) { // 当前协议不一致,切换协议
    alert('当前协议不一致,跳转至正确页面重新下载')
    location.href = `${this.url.split(':')[0]}://blog.luckly-mjw.cn/tool-show/m3u8-downloader/index.html?source=${this.url}`
    return
}
Momo707577045 commented 3 years ago

是的,部分资源会产生跨域问题。 你是遇到使用问题了吗?

wc7086 commented 3 years ago

是的,部分资源会产生跨域问题。 你是遇到使用问题了吗?

没啥,因为之前你的网站默认是http所以一直提示转跳,所以就问一下。没有其他问题需要了。