[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…
Reference in a new issue