]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Api/Mastodon/Media.php
Issue 12191: We can now follow and unfollow tags via API
[friendica.git] / src / Module / Api / Mastodon / Media.php
index 13ac3c9e162c7078eb87a397f2046d6be41fc323..1253026fdd07f3be03a857b605ba5c1e36915854 100644 (file)
@@ -37,7 +37,7 @@ class Media extends BaseApi
                self::checkAllowedScope(self::SCOPE_WRITE);
                $uid = self::getCurrentUserID();
 
-               Logger::info('Photo post', ['request' => $_REQUEST, 'files' => $_FILES]);
+               Logger::info('Photo post', ['request' => $request, 'files' => $_FILES]);
 
                if (empty($_FILES['file'])) {
                        DI::mstdnError()->UnprocessableEntity();
@@ -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();