]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Contact/Hovercard.php
whops .. wrong legacy endpoint
[friendica.git] / src / Module / Contact / Hovercard.php
index 7f12bf5cb5975daedd5151f0e4efd4c1604e5713..620b96095a4077d3307e6d03b6f9c6ce89080c73 100644 (file)
@@ -44,14 +44,12 @@ class Hovercard extends BaseModule
                        throw new HTTPException\ForbiddenException();
                }
 
-               // If a contact is connected the url is internally changed to 'redir/CID'. We need the pure url to search for
+               // If a contact is connected the url is internally changed to 'contact/redir/CID'. We need the pure url to search for
                // the contact. So we strip out the contact id from the internal url and look in the contact table for
                // the real url (nurl)
-               if (strpos($contact_url, 'redir/') === 0) {
+               if (strpos($contact_url, 'contact/redir/') === 0) {
                        $cid = intval(substr($contact_url, 6));
-               }
-
-               if (strpos($contact_url, 'contact/') === 0) {
+               } elseif (strpos($contact_url, 'contact/') === 0) {
                        $cid = intval(substr($contact_url, 8));
                }