]> git.mxchange.org Git - friendica.git/commitdiff
Update src/Module/Api/Friendica/Photoalbum/Show.php
authorHank G <hankgrabowski@gmail.com>
Tue, 13 Dec 2022 21:45:49 +0000 (16:45 -0500)
committerGitHub <noreply@github.com>
Tue, 13 Dec 2022 21:45:49 +0000 (16:45 -0500)
Co-authored-by: Hypolite Petovan <hypolite@mrpetovan.com>
src/Module/Api/Friendica/Photoalbum/Show.php

index ac9573da385bb3d3d981c68ed34eb96f77f3a8ed..e47ef51daa54640110a5a31bdcd7944c1fe4ca63 100644 (file)
@@ -54,13 +54,13 @@ class Show extends BaseApi
        protected function rawContent(array $request = [])
        {
                BaseApi::checkAllowedScope(BaseApi::SCOPE_READ);
-               $uid = BaseApi::getCurrentUserID();
-               $type = $this->getRequestValue($this->parameters, 'extension', 'json');
+               $uid     = BaseApi::getCurrentUserID();
+               $type    = $this->getRequestValue($this->parameters, 'extension', 'json');
                $request = $this->getRequest([
-                       'album'           => '',    // Get pictures in this album
-                       'offset'          => 0,     // Return results offset by this value
-                       'limit'           => 50,    // Maximum number of results to return. Defaults to 50. Max 500
-                       'latest_first'    => false, // Whether to reverse the order so newest are first
+                       'album'        => '',    // Get pictures in this album
+                       'offset'       => 0,     // Return results offset by this value
+                       'limit'        => 50,    // Maximum number of results to return. Defaults to 50. Max 500
+                       'latest_first' => false, // Whether to reverse the order so newest are first
                ], $request);
 
                if (empty($request['album'])) {