Merge pull request #3461 from Bnyro/master

fix: subscription group filter in feed doesn't work anymore
This commit is contained in:
Bnyro 2024-03-14 19:47:41 +01:00 committed by GitHub
commit d04fb453f6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -90,7 +90,7 @@ export default {
return _this.selectedGroupName == ""
? videos
: videos.filter(video => selectedGroup[0].channels.includes(video.uploaderUrl.substr(-11)));
: videos.filter(video => selectedGroup[0].channels.includes(video.uploaderUrl.substr(-24)));
},
},
mounted() {