Skip to content
Snippets Groups Projects
Commit 61582708 authored by Davide Aprea's avatar Davide Aprea
Browse files

minor changes

parent 343dafb8
No related branches found
No related tags found
3 merge requests!1895Development,!1775Development,!1765Resolve "add dummy-engine to docker installation"
...@@ -24,7 +24,6 @@ class Dummy extends Searchengine ...@@ -24,7 +24,6 @@ class Dummy extends Searchengine
} }
foreach ($content as $result) { foreach ($content as $result) {
try {
$title = $result->title; $title = $result->title;
$link = $result->link; $link = $result->link;
$anzeigeLink = $link; $anzeigeLink = $link;
...@@ -39,11 +38,6 @@ class Dummy extends Searchengine ...@@ -39,11 +38,6 @@ class Dummy extends Searchengine
$this->engine->{"display-name"},$this->engine->homepage, $this->engine->{"display-name"},$this->engine->homepage,
$this->counter $this->counter
); );
} catch (\ErrorException $e) {
Log::error("A problem occurred parsing results from $this->name:");
Log::error($e->getMessage());
return;
}
} }
} catch (\Exception $e) { } catch (\Exception $e) {
Log::error("A problem occurred parsing results from $this->name:"); Log::error("A problem occurred parsing results from $this->name:");
...@@ -78,7 +72,6 @@ class Dummy extends Searchengine ...@@ -78,7 +72,6 @@ class Dummy extends Searchengine
$newEngine->{"get-parameter"}->skip = $offset; $newEngine->{"get-parameter"}->skip = $offset;
} }
$next = new Dummy($this->name, $newEngine, $metager); $next = new Dummy($this->name, $newEngine, $metager);
$this->next = $next; $this->next = $next;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment