Skip to content
Snippets Groups Projects
Commit 7d60b6e4 authored by Demian Katz's avatar Demian Katz Committed by Robert Lange
Browse files

Tolerate exceptions in tag search.

......@@ -130,7 +130,7 @@ class Results extends BaseResults
return ['id' => $row['record_id'], 'source' => $row['source']];
};
$this->results = $this->recordLoader
->loadBatch(array_map($callback, $results));
->loadBatch(array_map($callback, $results), true);
}
/**
......
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