mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
fix(typo): Fix message of exception
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
ac470184e7
commit
bf897358ef
1 changed files with 1 additions and 1 deletions
|
|
@ -441,7 +441,7 @@ class RequestHandlerController extends Controller {
|
|||
return;
|
||||
}
|
||||
} elseif ($instance !== $signedRequest->getOrigin()) {
|
||||
throw new IncomingRequestException('remote instance {instance} not linked to origin {origin}', ['instance' => $instance, 'origin' => $signedRequest->getOrigin()]);
|
||||
throw new IncomingRequestException('remote instance ' . $instance . ' not linked to origin ' . $signedRequest->getOrigin());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue