From 7397cabeee606e6360d1a8b854a9898a8178784e Mon Sep 17 00:00:00 2001 From: Dag Date: Sat, 24 May 2025 19:29:04 +0200 Subject: [PATCH] fix(telegram): remove meta message (#4569) --- bridges/TelegramBridge.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bridges/TelegramBridge.php b/bridges/TelegramBridge.php index 54a089bc..0a3f1a74 100644 --- a/bridges/TelegramBridge.php +++ b/bridges/TelegramBridge.php @@ -104,7 +104,7 @@ class TelegramBridge extends BridgeAbstract $notSupported = $messageDiv->find('div.message_media_not_supported_wrap', 0); if ($notSupported) { // For unknown reasons, the telegram preview page omits the content of this post - $message = 'RSS-Bridge was unable to find the content of this post.

' . $notSupported->innertext; + $message = (string) $notSupported->innertext; } if ($messageDiv->find('div.tgme_widget_message_forwarded_from', 0)) {