Skip to content
Snippets Groups Projects
Commit f5da118f authored by Josef Moravec's avatar Josef Moravec Committed by Robert Lange
Browse files

ObalkyKnihService: catch exception on HTTP request (#1746)

parent 2a8eb492
Branches
Tags
No related merge requests found
...@@ -163,7 +163,12 @@ class ObalkyKnihService implements \VuFindHttp\HttpServiceAwareInterface, ...@@ -163,7 +163,12 @@ class ObalkyKnihService implements \VuFindHttp\HttpServiceAwareInterface,
$url = $this->apiUrl . "?"; $url = $this->apiUrl . "?";
$url .= http_build_query([$param => json_encode([$query])]); $url .= http_build_query([$param => json_encode([$query])]);
$client = $this->getHttpClient($url); $client = $this->getHttpClient($url);
$response = $client->send(); try {
$response = $client->send();
} catch (\Exception $e) {
$this->logError('Unexpected ' . get_class($e) . ': ' . $e->getMessage());
return null;
}
return $response->isSuccess() ? json_decode($response->getBody())[0] : null; return $response->isSuccess() ? json_decode($response->getBody())[0] : null;
} }
} }
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment