"getUserId" is now "getLoggedInUserId"

This commit is contained in:
Michael 2021-08-09 20:38:36 +00:00
parent 08c64387d7
commit 752602f5f5
1 changed files with 1 additions and 1 deletions

View File

@ -146,7 +146,7 @@ function twitter_follow(App $a, array &$contact)
$nickname = preg_replace("=https?://twitter.com/(.*)=ism", "$1", $contact["url"]);
$nickname = str_replace("@twitter.com", "", $nickname);
$uid = $a->getUserId();
$uid = $a->getLoggedInUserId();
$ckey = DI::config()->get('twitter', 'consumerkey');
$csecret = DI::config()->get('twitter', 'consumersecret');