Skip to content

Commit

Permalink
Merge pull request #35 from brilliancenw/develop-4
Browse files Browse the repository at this point in the history
Parsing Index Name Overrides
  • Loading branch information
markmiddleton authored Sep 25, 2023
2 parents d9c8c4f + 1cdebc1 commit 4f31732
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/AlgoliaSyncService.php
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,7 @@ public function getAlgoliaIndex($element): array
$potentialIndexOverride = $allSettings['algoliaElements'][$eventInfo['type']][$sectionId]['customIndex'];

if (!empty($potentialIndexOverride)) {
$returnIndex[] = $potentialIndexOverride;
$returnIndex[] = App::parseEnv($potentialIndexOverride);
return $returnIndex;
}
}
Expand Down

0 comments on commit 4f31732

Please sign in to comment.