X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModule%2FRandomProfile.php;h=163fec60fbb6da1f8b06d5be5ea45d58f3e99b38;hb=312c01a517369c0b3e1ef818081a780c0d445f93;hp=65ce5659592e7bcce2e72704d6482f724b36321a;hpb=ee8689cc899beecaf0943ac175550a7fb49cf199;p=friendica.git diff --git a/src/Module/RandomProfile.php b/src/Module/RandomProfile.php index 65ce565959..163fec60fb 100644 --- a/src/Module/RandomProfile.php +++ b/src/Module/RandomProfile.php @@ -34,10 +34,10 @@ class RandomProfile extends BaseModule { $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); }