mirror of
https://github.com/friendica/friendica
synced 2025-04-22 03:50:11 +00:00
Fix Friendica Photo GET API endpoint to work without explicit scale term
This commit is contained in:
parent
9b8b1be3e7
commit
46607598f3
2 changed files with 3 additions and 3 deletions
|
@ -54,7 +54,7 @@ class Photo extends BaseApi
|
|||
throw new HTTPException\BadRequestException('No photo id.');
|
||||
}
|
||||
|
||||
$scale = (!empty($request['scale']) ? intval($request['scale']) : false);
|
||||
$scale = (!empty($request['scale']) ? intval($request['scale']) : -1);
|
||||
$photo_id = $request['photo_id'];
|
||||
|
||||
// prepare json/xml output with data from database for the requested photo
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue