Browse Source

image result URLs are now checked for privacy friently frontends

hnhx 2 years ago
parent
commit
76dffa22fa
1 changed files with 2 additions and 0 deletions
  1. 2 0
      engines/google/image.php

+ 2 - 0
engines/google/image.php

@@ -13,7 +13,9 @@
         foreach($xpath->query("//div[@class='isv-r PNCib MSM1fd BUooTd']") as $result)
         {       
                 $image = $xpath->evaluate(".//img[@data-src]", $result)[0];
+
                 $url = $xpath->evaluate(".//a/@href", $result)[0]->textContent;
+		$url = check_for_privacy_frontend($url);
 
                 if (!empty($image))
                 {