mirror of
https://github.com/friendica/friendica
synced 2024-11-10 07:02:54 +00:00
Merge pull request #12395 from HankG/fix-photo-get-without-scale-arg
Fix Friendica Photo GET API endpoint to work without explicit scale term
This commit is contained in:
commit
27c738f90f
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ class Photo extends BaseApi
|
||||||
throw new HTTPException\BadRequestException('No photo id.');
|
throw new HTTPException\BadRequestException('No photo id.');
|
||||||
}
|
}
|
||||||
|
|
||||||
$scale = (!empty($request['scale']) ? intval($request['scale']) : false);
|
$scale = (!empty($request['scale']) ? intval($request['scale']) : null);
|
||||||
$photo_id = $request['photo_id'];
|
$photo_id = $request['photo_id'];
|
||||||
|
|
||||||
// prepare json/xml output with data from database for the requested photo
|
// prepare json/xml output with data from database for the requested photo
|
||||||
|
|
Loading…
Reference in a new issue