Update src/Worker/UpdateServerDirectory.php

Co-authored-by: Hypolite Petovan <hypolite@mrpetovan.com>
This commit is contained in:
Michael Vogel 2020-08-03 18:58:12 +02:00 committed by GitHub
parent cdf8a2f374
commit 22db644295
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 5 deletions

View File

@ -60,11 +60,8 @@ class UpdateServerDirectory
Logger::info('PoCo discovery started', ['poco' => $gserver['poco']]);
$urls = [];
foreach ($contacts['entry'] as $entry) {
if (empty($entry['urls'])) {
continue;
}
foreach ($entry['urls'] as $url_entry) {
foreach (array_column($contacts['entry'], 'urls') as $urls) {
foreach ($urls as $url_entry) {
if (empty($url_entry['type']) || empty($url_entry['value'])) {
continue;
}