diff options
author | lolcat <will@lolcat.ca> | 2023-11-07 09:24:14 -0500 |
---|---|---|
committer | lolcat <will@lolcat.ca> | 2023-11-07 09:24:14 -0500 |
commit | 61ef9561202f71af83e51d436a7c906a9ac777bf (patch) | |
tree | f1f229da863aba1c9dcce3ca59c9d2bb656df1b0 /scraper/mojeek.php | |
parent | 7e893a15c129f2b69527fbda032de85491fc20b2 (diff) |
remove debug print
Diffstat (limited to 'scraper/mojeek.php')
-rw-r--r-- | scraper/mojeek.php | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/scraper/mojeek.php b/scraper/mojeek.php index 3d91c09..c492a20 100644 --- a/scraper/mojeek.php +++ b/scraper/mojeek.php @@ -437,18 +437,20 @@ class mojeek{ } }else{ + $search = $get["s"]; + if(strlen($search) === 0){ + + throw new Exception("Search term is empty!"); + } + + $proxy = $this->backend->get_ip(); $lang = $get["lang"]; $country = $get["country"]; $region = $get["region"]; $domain = $get["domain"]; $focus = $get["focus"]; - if(strlen($search) === 0){ - - throw new Exception("Search term is empty!"); - } - $params = [ "q" => $search, "t" => 20, // number of results/page @@ -488,8 +490,6 @@ class mojeek{ $params["si"] = $domain; } - $proxy = $this->backend->get_ip(); - try{ $html = $this->get( @@ -1119,9 +1119,11 @@ class mojeek{ // parse big node information $data["author"] = - $this->fuckhtml - ->getTextContent( - $a[0]["innerHTML"] + htmlspecialchars_decode( + $this->fuckhtml + ->getTextContent( + $a[0]["innerHTML"] + ) ); }else{ |