Fix some errors

This commit is contained in:
Michael 2019-12-20 21:27:49 +00:00
parent 3c4f44a4ab
commit ef9bdfdff2
3 changed files with 4 additions and 4 deletions

View file

@ -7,12 +7,12 @@ namespace Friendica\Worker;
use Friendica\Core\Logger;
use Friendica\Protocol\PortableContact;
class UpdateServerDirectory.php
class UpdateServerDirectory
{
// Discover the given server id for their contacts
public static function execute($gserverid)
{
PortableContact::discoverSingleServer(gserverid);
PortableContact::discoverSingleServer($gserverid);
return;
}
}