]> git.mxchange.org Git - friendica-addons.git/commitdiff
fix errors in pumpio addon
authorArt4 <art4@wlabs.de>
Sat, 30 Nov 2024 20:12:23 +0000 (20:12 +0000)
committerArt4 <art4@wlabs.de>
Sat, 30 Nov 2024 20:12:23 +0000 (20:12 +0000)
pumpio/pumpio.php

index 5e053d7c30f4c6fa44ce02682b65969e99276ec1..d7c2ac326565b34784a0f2e89769651e69eed809 100644 (file)
@@ -6,7 +6,6 @@
  * Author: Michael Vogel <http://pirati.ca/profile/heluecht>
  */
 
-use Friendica\App;
 use Friendica\Content\Text\BBCode;
 use Friendica\Content\Text\HTML;
 use Friendica\Core\Addon;
@@ -582,6 +581,8 @@ function pumpio_action(int $uid, string $uri, string $action, string $content =
                $uri = $orig_post['uri'];
        }
 
+       $objectType = '';
+
        if (($orig_post['object-type'] != '') && (strstr($orig_post['object-type'], ActivityNamespace::ACTIVITY_SCHEMA))) {
                $objectType = str_replace(ActivityNamespace::ACTIVITY_SCHEMA, '', $orig_post['object-type']);
        } elseif (strstr($uri, '/api/comment/')) {
@@ -827,6 +828,7 @@ function pumpio_dounlike(int $uid, array $self, $post, string $own_id)
        }
 
        $contactid = 0;
+       $contact   = [];
 
        if (Strings::compareLink($post->actor->url, $own_id)) {
                $contactid = $self['id'];
@@ -1430,6 +1432,8 @@ function pumpio_fetchallcomments($uid, $id)
 
        Logger::notice('pumpio_fetchallcomments: fetching comment for user ' . $uid . ', URL ' . $url);
 
+       $item = new \stdClass();
+
        if (pumpio_reachable($url)) {
                $success = $client->CallAPI($url, 'GET', [], ['FailOnAccessError' => true], $item);
        } else {