Fix Photoalbum delete endpoint

- Fix condition on a removed Item field
This commit is contained in:
Hypolite Petovan 2021-11-29 06:16:20 -05:00
parent e2016bc67d
commit c7a40906bf
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ class Delete extends BaseApi
// function for setting the items to "deleted = 1" which ensures that comments, likes etc. are not shown anymore
// to the user and the contacts of the users (drop_items() performs the federation of the deletion to other networks
$condition = ['uid' => $uid, 'resource-id' => $resourceIds, 'type' => 'photo'];
$condition = ['uid' => $uid, 'resource-id' => $resourceIds, 'post-type' => Item::PT_IMAGE, 'origin' => true];
Item::deleteForUser($condition, $uid);
// now let's delete all photos from the album