We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a3e823 commit d6f0880Copy full SHA for d6f0880
Helper/AlgoliaHelper.php
@@ -241,6 +241,11 @@ public function setSettings(
241
$settings = $this->mergeSettings($indexName, $settings, $mergeSettingsFrom);
242
}
243
244
+ // Removing synonyms from the settings to avoid duplication (synonyms must be managed within the algolia dashboard)
245
+ if (isset($settings['synonyms'])) {
246
+ unset($settings['synonyms']);
247
+ }
248
+
249
$res = $this->getClient()->setSettings($indexName, $settings, $forwardToReplicas);
250
251
self::setLastOperationInfo($indexName, $res);
0 commit comments