]> git.mxchange.org Git - friendica.git/commitdiff
Fixup post
authorPhilipp <admin@philipp.info>
Mon, 31 Oct 2022 11:53:48 +0000 (12:53 +0100)
committerPhilipp <admin@philipp.info>
Mon, 31 Oct 2022 19:56:44 +0000 (20:56 +0100)
src/Module/Contact/Follow.php

index 08585d26f9380775cdd440128d367aca99605f24..7504501d417c4df06866c0d07f99b904bf5e465d 100644 (file)
@@ -68,8 +68,6 @@ class Follow extends BaseModule
 
        protected function post(array $request = [])
        {
-               parent::post($request);
-
                if (!$this->session->getLocalUserId()) {
                        throw new ForbiddenException($this->t('Access denied.'));
                }
@@ -79,6 +77,8 @@ class Follow extends BaseModule
                }
 
                $url = Probe::cleanURI($this->session->get('url'));
+
+               $this->process($url);
        }
 
        protected function content(array $request = []): string