Skip to content
Snippets Groups Projects
Commit c6824e3b authored by Liam Morland's avatar Liam Morland
Browse files

Issue #3426100: Return empty array on error in LocalServerPdfBackend::parseStream()

parent f225cb1f
No related branches found
No related tags found
No related merge requests found
......@@ -86,7 +86,7 @@ class LocalServerPdfBackend extends PdfBackendBase implements ContainerFactoryPl
$json = Utils::jsonEncode($request);
$fields = [];
$fields_response = NULL;
try {
$fields_response = $this->httpClient->post($this->configuration['local_service_endpoint'] . '/api/v1/parse', [
......@@ -106,6 +106,10 @@ class LocalServerPdfBackend extends PdfBackendBase implements ContainerFactoryPl
}
}
if (!$fields_response) {
return [];
}
$fields = Utils::jsonDecode((string) $fields_response->getBody(), TRUE);
return $fields;
......
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