fix: subscription group filter in feed doesn't work anymore

This commit is contained in:
Bnyro 2024-03-14 19:46:09 +01:00
parent 84b2637d7d
commit e29bfd6096
1 changed files with 1 additions and 1 deletions

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() {