Reduce error-throws :-)

This commit is contained in:
Philipp 2022-11-07 20:34:05 +01:00
parent a81708091f
commit d524f55e3e
No known key found for this signature in database
GPG Key ID: 24A7501396EB5432
1 changed files with 1 additions and 5 deletions

View File

@ -54,11 +54,7 @@ class Show extends BaseModule
throw new HTTPException\UnauthorizedException($this->t('Permission denied.'));
}
if (empty($this->parameters['id'])) {
throw new HTTPException\BadRequestException($this->t('Invalid Request'));
}
$event = Event::getByIdAndUid($this->session->getLocalUserId(), (int)$this->parameters['id'], $this->parameters['nickname'] ?? '');
$event = Event::getByIdAndUid($this->session->getLocalUserId(), (int)$this->parameters['id'] ?? 0, $this->parameters['nickname'] ?? '');
if (empty($event)) {
throw new HTTPException\NotFoundException($this->t('Event not found.'));