Merge pull request #14533 from annando/warning

Fixes "foreach() argument must be of type array|object, string given"
pull/14527/head
Tobias Diekershoff 2024-11-06 06:29:04 +01:00 zatwierdzone przez GitHub
commit 435c37bff4
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -76,7 +76,7 @@ class UpdateServerDirectory
}
$accounts = json_decode($result, true);
if (empty($accounts)) {
if (!is_array($accounts)) {
Logger::info('No contacts', ['url' => $gserver['url']]);
return;
}