]> git.mxchange.org Git - friendica.git/blobdiff - mod/noscrape.php
Switch Api\Mastodon\FollowRequests to list introductions instead of pending contacts
[friendica.git] / mod / noscrape.php
index e1d51e5a801eae0f8a5bcee7c27d0cc9d43e2c1e..7b8c0bdeb1f234b5310d605a117fd54089fe1085 100644 (file)
@@ -9,13 +9,14 @@ use Friendica\Core\System;
 use Friendica\Database\DBA;
 use Friendica\Model\Contact;
 use Friendica\Model\Profile;
+use Friendica\Model\User;
 
 function noscrape_init(App $a)
 {
        if ($a->argc > 1) {
                $which = $a->argv[1];
        } else {
-               killme();
+               exit();
        }
 
        $profile = 0;
@@ -32,7 +33,7 @@ function noscrape_init(App $a)
                'guid'         => $a->profile['guid'],
                'key'          => $a->profile['pubkey'],
                'homepage'     => System::baseUrl()."/profile/{$which}",
-               'comm'         => ($a->profile['account-type'] == Contact::ACCOUNT_TYPE_COMMUNITY),
+               'comm'         => ($a->profile['account-type'] == User::ACCOUNT_TYPE_COMMUNITY),
                'account-type' => $a->profile['account-type'],
        ];
 
@@ -48,7 +49,7 @@ function noscrape_init(App $a)
                exit;
        }
 
-       $keywords = defaults($a->profile, 'pub_keywords', '');
+       $keywords = $a->profile['pub_keywords'] ?? '';
        $keywords = str_replace(['#',',',' ',',,'], ['',' ',',',','], $keywords);
        $keywords = explode(',', $keywords);