hide anything that contain "porn" in the url
This commit is contained in:
parent
9dff68bc7f
commit
e9d68a43a6
1 changed files with 4 additions and 0 deletions
|
@ -118,6 +118,10 @@ class DownloadController {
|
|||
return view.render(page, viewOption);
|
||||
}
|
||||
|
||||
if (data.url.toLowerCase().includes("porn")) {
|
||||
data.feed = "on";
|
||||
}
|
||||
|
||||
let videoID;
|
||||
if (data.sponsorBlock) {
|
||||
let regExp = /^.*((youtu.be\/)|(v\/)|(\/u\/\w\/)|(embed\/)|(watch\?))\??v?=?([^#&?]*).*/;
|
||||
|
|
Loading…
Reference in a new issue