diff --git a/src/App/Router.php b/src/App/Router.php index 5b915c0e6a..9dac021b3a 100644 --- a/src/App/Router.php +++ b/src/App/Router.php @@ -150,6 +150,8 @@ class Router if ($this->baseRoutesFilepath && !file_exists($this->baseRoutesFilepath)) { throw new HTTPException\InternalServerErrorException('Routes file path does\'n exist.'); } + + $this->parameters = [$this->server]; } /** @@ -293,8 +295,6 @@ class Router $dispatcher = new FriendicaGroupCountBased($this->getCachedDispatchData()); - $this->parameters = [$this->server]; - try { // Check if the HTTP method is OPTIONS and return the special Options Module with the possible HTTP methods if ($this->args->getMethod() === static::OPTIONS) {