Ver Fonte

hopefully this fixes bing images my fucking god

lolcat há 1 ano atrás
pai
commit
b85820cbcd
3 ficheiros alterados com 3 adições e 3 exclusões
  1. 1 1
      proxy.php
  2. 1 1
      scraper/ddg.php
  3. 1 1
      scraper/qwant.php

+ 1 - 1
proxy.php

@@ -87,7 +87,7 @@ try{
 			case "cover": $req = "?w=207&h=270&p=0&qlt=90"; break;
 		}
 		
-		$proxy->stream_linear_image("https://" . $image["host"] . "/th/id/" . urlencode($id) . $req, "https://www.bing.com");
+		$proxy->stream_linear_image("https://" . $image["host"] . "/th?id=" . rawurlencode($id) . $req, "https://www.bing.com");
 		die();
 	}
 	

+ 1 - 1
scraper/ddg.php

@@ -1969,7 +1969,7 @@ class ddg{
 			$id = $id[1];
 		}
 		
-		return "https://" . $image["host"] . "/th/id/" . $id;
+		return "https://" . $image["host"] . "/th?id=" . rawurlencode($id);
 	}
 	
 	private function bingratio($width, $height){

+ 1 - 1
scraper/qwant.php

@@ -988,6 +988,6 @@ class qwant{
 			return $url;
 		}
 		
-		return "https://" . $image["host"] . "/th/id/" . $id;
+		return "https://" . $image["host"] . "/th?id=" . rawurlencode($id);
 	}
 }