mirror of
https://github.com/friendica/friendica
synced 2025-04-19 06:30:10 +00:00
Fix wrong default value in Module\Api\Friendica\Photo\Create::post
- The underlying Model\Photo::upload doesn't accept a null value for description
This commit is contained in:
parent
f4e71b57da
commit
babbdf58e6
2 changed files with 11 additions and 4 deletions
|
@ -55,7 +55,7 @@ class Create extends BaseApi
|
|||
$type = $this->getRequestValue($this->parameters, 'extension', 'json');
|
||||
|
||||
// input params
|
||||
$desc = $this->getRequestValue($request, 'desc');
|
||||
$desc = $this->getRequestValue($request, 'desc') ?? '';
|
||||
$album = $this->getRequestValue($request, 'album');
|
||||
$allow_cid = $this->getRequestValue($request, 'allow_cid');
|
||||
$deny_cid = $this->getRequestValue($request, 'deny_cid');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue