blocktube icon indicating copy to clipboard operation
blocktube copied to clipboard

View count advanced filter not working in Playlist view

Open Apposite245 opened this issue 3 years ago • 0 comments

Filter looks like this


(video, objectType) => {
	
	if (video.viewCount > 10000) {
	return true;
	}
  
	return false;
}

not working in playlist view, works fine everywhere else.

Apposite245 avatar Jun 14 '22 14:06 Apposite245