From: Hypolite Petovan Date: Mon, 29 Nov 2021 11:16:20 +0000 (-0500) Subject: Fix Photoalbum delete endpoint X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c7a40906bfb3bce9ef88b08dbaf27ea1d53950ee;p=friendica.git Fix Photoalbum delete endpoint - Fix condition on a removed Item field --- diff --git a/src/Module/Api/Friendica/Photoalbum/Delete.php b/src/Module/Api/Friendica/Photoalbum/Delete.php index 2d71e35812..8a45de2d36 100644 --- a/src/Module/Api/Friendica/Photoalbum/Delete.php +++ b/src/Module/Api/Friendica/Photoalbum/Delete.php @@ -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