]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/RandomProfile.php
Merge pull request #11003 from annando/fix-api
[friendica.git] / src / Module / RandomProfile.php
index 65ce5659592e7bcce2e72704d6482f724b36321a..38cd684294e54e3db4a394649d210dc4ad2a8be8 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2020, Friendica
+ * @copyright Copyright (C) 2010-2021, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -30,17 +30,19 @@ use Friendica\Model\Contact;
  */
 class RandomProfile extends BaseModule
 {
-       public static function content(array $parameters = [])
+       public function content(): string
        {
                $a = DI::app();
 
-               $contactUrl = Contact::getRandomUrl();
+               $contact = Contact::getRandomContact();
 
-               if ($contactUrl) {
-                       $link = Contact::magicLink($contactUrl);
+               if (!empty($contact)) {
+                       $link = Contact::magicLinkByContact($contact);
                        $a->redirect($link);
                }
 
                DI::baseUrl()->redirect('profile');
+
+               return '';
        }
 }