Apply suggestions from code review

Co-authored-by: Hypolite Petovan <hypolite@mrpetovan.com>
This commit is contained in:
Michael Vogel 2021-10-04 21:06:13 +02:00 committed by GitHub
parent b2c2283817
commit 790875d8be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -83,7 +83,7 @@ class Photo extends BaseModule
}
if (!empty($parameters['guid'])) {
$guid = pathinfo($parameters['guid'], PATHINFO_FILENAME);
$guid = $parameters['guid'];
$account = DBA::selectFirst('account-user-view', ['id'], ['guid' => $guid], ['order' => ['uid' => true]]);
if (empty($account)) {
throw new HTTPException\NotFoundException();
@ -92,8 +92,9 @@ class Photo extends BaseModule
$id = $account['id'];
}
// Contact Id Fallback, to remove after version 2021.12
if (!empty($parameters['contact_id'])) {
$id = intval(pathinfo($parameters['contact_id'], PATHINFO_FILENAME));
$id = intval($parameters['contact_id']);
}
if (!empty($parameters['nickname_ext'])) {