amitbl / blocktube

YouTube™ content blocker
GNU General Public License v3.0
931 stars 67 forks source link

View count advanced filter not working in Playlist view #229

Open Apposite245 opened 2 years ago

Apposite245 commented 2 years ago

Filter looks like this


(video, objectType) => {

    if (video.viewCount > 10000) {
    return true;
    }

    return false;
}

not working in playlist view, works fine everywhere else.