Skip to content
Snippets Groups Projects
Commit 2171e6bf authored by alangrafu's avatar alangrafu
Browse files

TEMPORAL: when receiving 0 results DON'T 404

parent afcc6d29
No related branches found
No related tags found
No related merge requests found
...@@ -187,7 +187,8 @@ class Utils{ ...@@ -187,7 +187,8 @@ class Utils{
elseif(preg_match("/select/i", $data['query'])){ elseif(preg_match("/select/i", $data['query'])){
$results = $data['results']; $results = $data['results'];
if(sizeof($results['results']['bindings']) == 0){ if(sizeof($results['results']['bindings']) == 0){
Utils::send404($uri); //Avoid for now
//Utils::send404($uri);
} }
} }
return $results; return $results;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment