Fix fetching contacts

This commit is contained in:
Michael 2020-07-16 03:52:18 +00:00
parent b0086a49e2
commit caf548e1a7
1 changed files with 7 additions and 5 deletions

View File

@ -211,11 +211,13 @@ class Contact
// Add internal fields // Add internal fields
$removal = []; $removal = [];
foreach (['id', 'updated', 'network'] as $internal) { if (!empty($fields)) {
if (!in_array($internal, $fields)) { foreach (['id', 'updated', 'network'] as $internal) {
$fields[] = $internal; if (!in_array($internal, $fields)) {
$removal[] = $internal; $fields[] = $internal;
} $removal[] = $internal;
}
}
} }
// We first try the nurl (http://server.tld/nick), most common case // We first try the nurl (http://server.tld/nick), most common case