mirror of
https://github.com/friendica/friendica
synced 2024-11-19 06:23:40 +00:00
Fix: Missing gserver entries - show correct server platform
This commit is contained in:
parent
070e1e73d6
commit
a3570d0027
1 changed files with 5 additions and 0 deletions
|
@ -1076,6 +1076,11 @@ class Contact extends BaseObject
|
||||||
|
|
||||||
if (empty($data)) {
|
if (empty($data)) {
|
||||||
$data = Probe::uri($url, "", $uid);
|
$data = Probe::uri($url, "", $uid);
|
||||||
|
|
||||||
|
// Ensure that there is a gserver entry
|
||||||
|
if (!empty($data['baseurl']) && ($data['network'] != Protocol::PHANTOM)) {
|
||||||
|
PortableContact::checkServer($data['baseurl']);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Last try in gcontact for unsupported networks
|
// Last try in gcontact for unsupported networks
|
||||||
|
|
Loading…
Reference in a new issue