From: Michael Vogel Date: Sat, 26 Sep 2020 20:13:00 +0000 (+0200) Subject: Fix: Noscrape hadn't always returned a key X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=78b5be12a33e5fa1a99dfa5db9d39248569beb74;p=friendica.git Fix: Noscrape hadn't always returned a key --- diff --git a/src/Module/NoScrape.php b/src/Module/NoScrape.php index 4ad0e53069..7178209bd8 100644 --- a/src/Module/NoScrape.php +++ b/src/Module/NoScrape.php @@ -60,7 +60,7 @@ class NoScrape extends BaseModule 'addr' => $a->profile['addr'], 'nick' => $which, 'guid' => $a->profile['guid'], - 'key' => $a->profile['pubkey'], + 'key' => $a->profile['upubkey'], 'homepage' => DI::baseUrl() . "/profile/{$which}", 'comm' => ($a->profile['account-type'] == User::ACCOUNT_TYPE_COMMUNITY), 'account-type' => $a->profile['account-type'],