diff --git a/src/components/Play.vue b/src/components/Play.vue index c5a631f..f7b236f 100644 --- a/src/components/Play.vue +++ b/src/components/Play.vue @@ -107,7 +107,7 @@ 播放列表 历史记录 快捷键指南 - 其他源的视频 + 同组其他源的视频 关闭 @@ -764,9 +764,10 @@ export default { }, async getOtherSites () { this.right.other = [] + const currentSite = await sites.find({ key: this.video.key }) sites.all().then(sitesRes => { // 排除已关闭的源和当前源 - for (const siteItem of sitesRes.filter(x => x.isActive && x.key !== this.video.key)) { + for (const siteItem of sitesRes.filter(x => x.isActive && x.group === currentSite.group && x.key !== this.video.key)) { zy.search(siteItem.key, this.name).then(searchRes => { const type = Object.prototype.toString.call(searchRes) if (type === '[object Array]') {