mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-02-16 23:29:56 +03:00
[TelegramBridge] Fix timestamp for videos (#1181)
This commit is contained in:
parent
1591e18027
commit
372461b1a3
1 changed files with 4 additions and 1 deletions
|
@ -249,7 +249,10 @@ EOD;
|
|||
}
|
||||
|
||||
private function processDate($messageDiv) {
|
||||
return $messageDiv->find('time', 0)->datetime;
|
||||
|
||||
$messageMeta = $messageDiv->find('span.tgme_widget_message_meta', 0);
|
||||
return $messageMeta->find('time', 0)->datetime;
|
||||
|
||||
}
|
||||
|
||||
private function ellipsisTitle($text) {
|
||||
|
|
Loading…
Add table
Reference in a new issue