Avaoid warning when no valid data could be read

This commit is contained in:
Michael 2018-05-18 16:07:55 +00:00
parent 2460cbc09e
commit 5d708fd9a9
1 changed files with 4 additions and 2 deletions

View File

@ -1527,10 +1527,12 @@ class PortableContact
if ($serverdata) {
$servers = json_decode($serverdata);
if (is_array($servers->pods)) {
foreach ($servers->pods as $server) {
Worker::add(PRIORITY_LOW, "DiscoverPoCo", "server", "https://".$server->host);
}
}
}
// Disvover Mastodon servers
if (!Config::get('system', 'ostatus_disabled')) {