Merge pull request #11064 from MrPetovan/bug/api-getRequest-PUT

Add expected second parameter to BaseApi::getRequest in a few put() methods
This commit is contained in:
Michael Vogel 2021-12-04 05:08:07 +01:00 committed by GitHub
commit 00f8b620dc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -79,7 +79,7 @@ class Lists extends BaseApi
$request = $this->getRequest([
'title' => '', // The title of the list to be updated.
'replies_policy' => '', // One of: "followed", "list", or "none".
]);
], $request);
if (empty($request['title']) || empty($this->parameters['id'])) {
DI::mstdnError()->UnprocessableEntity();

View file

@ -63,7 +63,7 @@ class Media extends BaseApi
'thumbnail' => [], // The custom thumbnail of the media to be attached, using multipart form data.
'description' => '', // A plain-text description of the media, for accessibility purposes.
'focus' => '', // Two floating points (x,y), comma-delimited ranging from -1.0 to 1.0
]);
], $request);
if (empty($this->parameters['id'])) {
DI::mstdnError()->UnprocessableEntity();

View file

@ -74,7 +74,7 @@ class PushSubscription extends BaseApi
$request = $this->getRequest([
'data' => [],
]);
], $request);
$subscription = Subscription::select($application['id'], $uid, ['id']);
if (empty($subscription)) {