fix function call (#503)
This commit is contained in:
parent
2ef72a0364
commit
d564915fdf
2 changed files with 3 additions and 1 deletions
|
@ -2,6 +2,7 @@
|
|||
namespace Activitypub;
|
||||
|
||||
use WP_Error;
|
||||
use Activitypub\Webfinger;
|
||||
|
||||
/**
|
||||
* ActivityPub Mention Class
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<?php
|
||||
namespace Activitypub\Integration;
|
||||
|
||||
use Activitypub\Rest\Webfinger as Webfinger_Rest;
|
||||
use Activitypub\Collection\Users as User_Collection;
|
||||
|
||||
/**
|
||||
|
@ -52,6 +53,6 @@ class Webfinger {
|
|||
return $array;
|
||||
}
|
||||
|
||||
return self::get_profile( $resource );
|
||||
return Webfinger_Rest::get_profile( $resource );
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue