]> git.mxchange.org Git - friendica-addons.git/commitdiff
We now use the new delete function for items
authorMichael <heluecht@pirati.ca>
Fri, 19 Jan 2018 05:36:01 +0000 (05:36 +0000)
committerMichael <heluecht@pirati.ca>
Fri, 19 Jan 2018 05:36:01 +0000 (05:36 +0000)
pumpio/pumpio.php

index d8538dccce431ed7d287f414960307f06340a6a6..6aaa05655f04cbd5e09d389b830b6db891d6b6fe 100644 (file)
@@ -12,6 +12,7 @@ use Friendica\Model\Contact;
 use Friendica\Model\GContact;
 use Friendica\Model\Group;
 use Friendica\Model\User;
+use Friendica\Model\Item;
 
 require 'addon/pumpio/oauth/http.php';
 require 'addon/pumpio/oauth/oauth_client.php';
@@ -1054,7 +1055,7 @@ function pumpio_dodelete(&$a, $uid, $self, $post, $own_id) {
                );
 
        if (count($r))
-               return drop_item($r[0]["id"], $false);
+               return Item::delete($r[0]["id"]);
 
        $r = q("SELECT * FROM `item` WHERE `extid` = '%s' AND `uid` = %d LIMIT 1",
                                dbesc($post->object->id),
@@ -1062,7 +1063,7 @@ function pumpio_dodelete(&$a, $uid, $self, $post, $own_id) {
                );
 
        if (count($r))
-               return drop_item($r[0]["id"], $false);
+               return Item::delete($r[0]["id"]);
 }
 
 function pumpio_dopost(&$a, $client, $uid, $self, $post, $own_id, $threadcompletion = true) {