Skip to content
Snippets Groups Projects
Commit 4ab85449 authored by Ere Maijala's avatar Ere Maijala
Browse files

Don't try to load record with empty id.

parent d67484d7
No related merge requests found
...@@ -95,21 +95,26 @@ class Loader ...@@ -95,21 +95,26 @@ class Loader
public function load($id, $source = DEFAULT_SEARCH_BACKEND, public function load($id, $source = DEFAULT_SEARCH_BACKEND,
$tolerateMissing = false $tolerateMissing = false
) { ) {
$results = []; if (null !== $id && '' !== $id) {
if (null !== $this->recordCache && $this->recordCache->isPrimary($source)) { $results = [];
$results = $this->recordCache->lookup($id, $source); if (null !== $this->recordCache
} && $this->recordCache->isPrimary($source)
if (empty($results)) { ) {
$results = $this->searchService->retrieve($source, $id)->getRecords(); $results = $this->recordCache->lookup($id, $source);
} }
if (empty($results) && null !== $this->recordCache if (empty($results)) {
&& $this->recordCache->isFallback($source) $results = $this->searchService->retrieve($source, $id)
) { ->getRecords();
$results = $this->recordCache->lookup($id, $source); }
} if (empty($results) && null !== $this->recordCache
&& $this->recordCache->isFallback($source)
) {
$results = $this->recordCache->lookup($id, $source);
}
if (!empty($results)) { if (!empty($results)) {
return $results[0]; return $results[0];
}
} }
if ($tolerateMissing) { if ($tolerateMissing) {
$record = $this->recordFactory->get('Missing'); $record = $this->recordFactory->get('Missing');
......
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