Skip to content
Snippets Groups Projects
Commit 7ceb49e1 authored by Marcus Johansson's avatar Marcus Johansson
Browse files

Resolve #3514289 "Fields check should"

parent 81a9f538
No related branches found
No related tags found
1 merge request!3Resolve #3514289 "Fields check should"
......@@ -19,7 +19,7 @@ function ai_vdb_provider_postgres_search_api_index_update(IndexInterface $index)
if (!isset($backend_config['database'])) {
return;
}
if (!$backend_config['database'] == 'postgres') {
if ($backend_config['database'] !== 'postgres') {
return;
}
$ai_vdb_provider_postgres = \Drupal::service('ai.vdb_provider')->createInstance('postgres');
......@@ -44,4 +44,4 @@ function ai_vdb_provider_postgres_is_field_multiple($field) {
return FALSE;
}
return TRUE;
}
\ No newline at end of file
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment