1
0
Fork 0

Make the tests happy

This commit is contained in:
Michael 2022-07-29 16:05:04 +00:00
commit 0971bcf165
5 changed files with 6 additions and 6 deletions

View file

@ -998,7 +998,7 @@ class DFRN
$path_parts = explode('/', $parts['path']);
array_pop($path_parts);
$parts['path'] = implode('/', $path_parts);
$contact['batch'] = Uri::fromParts($parts);
$contact['batch'] = (string)Uri::fromParts($parts);
}
$dest_url = ($public_batch ? $contact['batch'] : $contact['notify']);

View file

@ -1419,7 +1419,7 @@ class Diaspora
$parts = parse_url($person['url']);
unset($parts['path']);
$host_url = Uri::fromParts($parts);
$host_url = (string)Uri::fromParts($parts);
return $host_url . '/objects/' . $guid;
}