mirror of
https://github.com/friendica/friendica
synced 2025-04-26 18:30:11 +00:00
optimizations
This commit is contained in:
parent
6dbbd08179
commit
0e45f22b06
2 changed files with 1 additions and 4 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue