From 4a9c7d2f30e87ed97090b0c58e946007e2ca5003 Mon Sep 17 00:00:00 2001 From: Art4 Date: Mon, 4 Nov 2024 13:56:04 +0100 Subject: [PATCH] Remove call of non-existing functions 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 | 21 +-------------------- 1 file changed, 1 insertion(+), 20 deletions(-) diff --git a/src/Module/Debug/Babel.php b/src/Module/Debug/Babel.php index 794068962a..10b424850b 100644 --- a/src/Module/Debug/Babel.php +++ b/src/Module/Debug/Babel.php @@ -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),