Update src/Module/Api/Friendica/Photoalbum/Index.php

Co-authored-by: Hypolite Petovan <hypolite@mrpetovan.com>
This commit is contained in:
Hank G 2022-12-13 16:45:34 -05:00 committed by GitHub
parent 5288ed46d4
commit d74345782a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -42,9 +42,9 @@ class Index extends BaseApi
$items = [];
foreach ($albums as $album) {
$items[] = [
'name' => $album['album'],
'created' => $album['created'],
'count' => $album['total'],
'name' => $album['album'],
'created' => $album['created'],
'count' => $album['total'],
];
}