Update Friendica Photo API endpoint fix to pass null for scale when not applied

This commit is contained in:
Hank Grabowski 2022-12-12 12:37:01 -05:00
parent 46607598f3
commit 4e5794c99d
2 changed files with 3 additions and 3 deletions

View file

@ -54,7 +54,7 @@ class Photo extends BaseApi
throw new HTTPException\BadRequestException('No photo id.');
}
$scale = (!empty($request['scale']) ? intval($request['scale']) : -1);
$scale = (!empty($request['scale']) ? intval($request['scale']) : null);
$photo_id = $request['photo_id'];
// prepare json/xml output with data from database for the requested photo