fix(telegram): add note if content is omitted from preview page (#4210)

* fix(telegram): add note if content is omitted from preview page

* lint
This commit is contained in:
Dag 2024-08-11 01:23:10 +02:00 committed by GitHub
parent 2e6e246759
commit 133dbf87c5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -70,8 +70,14 @@ class TelegramBridge extends BridgeAbstract
{
$message = '';
$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.<br><br>' . $notSupported->innertext;
}
if ($messageDiv->find('div.tgme_widget_message_forwarded_from', 0)) {
$message = $messageDiv->find('div.tgme_widget_message_forwarded_from', 0)->innertext . '<br><br>';
$message .= $messageDiv->find('div.tgme_widget_message_forwarded_from', 0)->innertext . '<br><br>';
}
if ($messageDiv->find('a.tgme_widget_message_reply', 0)) {