Merge pull request #46943 from nextcloud/fix/ghost-providers

fix(AdminSettings/AI): show pref list of only the enabled translation providers
This commit is contained in:
Anupam Kumar 2024-08-01 16:25:30 +05:30 committed by GitHub
commit 4925cf37e9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -148,7 +148,12 @@ class ArtificialIntelligence implements IDelegatedSettings {
$value = array_merge($defaultValue, $value);
break;
case 'ai.translation_provider_preferences':
$value += array_diff($defaultValue, $value); // Add entries from $defaultValue that are not in $value to the end of $value
// Only show entries from $value (saved pref list) that are in $defaultValue (enabled providers)
// and add all providers that are enabled but not in the pref list
if (!is_array($defaultValue)) {
break;
}
$value = array_values(array_unique(array_merge(array_intersect($value, $defaultValue), $defaultValue), SORT_STRING));
break;
default:
break;