]> git.mxchange.org Git - friendica.git/commitdiff
Remove call of non-existing functions
authorArt4 <art4@wlabs.de>
Mon, 4 Nov 2024 12:56:04 +0000 (13:56 +0100)
committerArt4 <art4@wlabs.de>
Mon, 4 Nov 2024 12:56:08 +0000 (13:56 +0100)
This functions were removed in commit a97b3f690c9e4476ba638236897507100f77af6f

- twitter_statuses_show()
- twitter_media_entities()
- twitter_expand_entities()

see https://github.com/friendica/friendica-addons/commit/a97b3f690c9e4476ba638236897507100f77af6f

src/Module/Debug/Babel.php

index 794068962a2781f015ef66e4fb5605a3caa3b5a4..10b424850b1ea2703708e7769e180f3ceb580f73 100644 (file)
@@ -232,12 +232,7 @@ class Babel extends BaseModule
                                        if (file_exists('addon/twitter/twitter.php')) {
                                                require_once 'addon/twitter/twitter.php';
 
-                                               if (parse_url($json) !== false) {
-                                                       preg_match('#^https?://(?:mobile\.|www\.)?twitter.com/[^/]+/status/(\d+).*#', $json, $matches);
-                                                       $status = twitter_statuses_show($matches[1]);
-                                               } else {
-                                                       $status = json_decode($json);
-                                               }
+                                               $status = json_decode($json);
 
                                                $results[] = [
                                                        'title'   => DI::l10n()->t('Decoded post'),
@@ -258,24 +253,10 @@ class Babel extends BaseModule
                                                        $postarray['object-type'] = Activity\ObjectType::BOOKMARK;
                                                }
 
-                                               $picture = \twitter_media_entities($status, $postarray);
-
                                                $results[] = [
                                                        'title'   => DI::l10n()->t('Post array before expand entities'),
                                                        'content' => $this->visible_whitespace(var_export($postarray, true)),
                                                ];
-
-                                               $converted = \twitter_expand_entities($postarray['body'], $status, $picture);
-
-                                               $results[] = [
-                                                       'title'   => DI::l10n()->t('Post converted'),
-                                                       'content' => $this->visible_whitespace(var_export($converted, true)),
-                                               ];
-
-                                               $results[] = [
-                                                       'title'   => DI::l10n()->t('Converted body'),
-                                                       'content' => $this->visible_whitespace($converted['body']),
-                                               ];
                                        } else {
                                                $results[] = [
                                                        'title'   => DI::l10n()->tt('Error', 'Errors', 1),