optimizations

This commit is contained in:
Philipp Holzer 2022-01-04 20:50:20 +01:00
parent 6dbbd08179
commit 0e45f22b06
Signed by: nupplaPhil
GPG Key ID: 24A7501396EB5432
2 changed files with 1 additions and 4 deletions

View File

@ -32,7 +32,6 @@ use Friendica\Core\Hook;
use Friendica\Core\L10n;
use Friendica\Core\Renderer;
use Friendica\Core\Theme;
use Friendica\DI;
use Friendica\Network\HTTPException;
use Friendica\Util\Network;
use Friendica\Util\Strings;

View File

@ -264,10 +264,8 @@ class Router
// Check if the HTTP method is OPTIONS and return the special Options Module with the possible HTTP methods
if ($this->args->getMethod() === static::OPTIONS) {
$routeOptions = $dispatcher->getOptions($cmd);
$moduleClass = Options::class;
$this->parameters = ['allowedMethods' => $routeOptions];
$this->parameters = ['allowedMethods' => $dispatcher->getOptions($cmd)];
} else {
$routeInfo = $dispatcher->dispatch($this->args->getMethod(), $cmd);
if ($routeInfo[0] === Dispatcher::FOUND) {