Allow album to be empty string thus defaulting to i10n "Wall Photos" like in UI
This commit is contained in:
parent
94801986b6
commit
8f56aa316b
|
@ -64,8 +64,8 @@ class Create extends BaseApi
|
|||
|
||||
// do several checks on input parameters
|
||||
// we do not allow calls without album string
|
||||
if ($album == null) {
|
||||
throw new HTTPException\BadRequestException('no albumname specified');
|
||||
if ($album === null) {
|
||||
throw new HTTPException\BadRequestException('no album name specified');
|
||||
}
|
||||
|
||||
// error if no media posted in create-mode
|
||||
|
|
Loading…
Reference in a new issue