Commit 8b5afa35 authored by Guy Thouret's avatar Guy Thouret
Browse files

(fix) Fix undefined index error in Boost\Network\ElasticSearchRepository - #661

parent 407a2792
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -58,7 +58,7 @@ class ElasticRepository
            ];
        }

        if ($opts['entity_guid']) {
        if (isset($opts['entity_guid'])) {
            $must[] = [
                'term' => [
                    'entity_guid' => $opts['entity_guid']