1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-08-08 01:26:31 +02:00

[RutubeBridge] Include timestamp and author in feed (#2982)

This commit is contained in:
Eugene Molotov
2022-08-24 17:49:54 +05:00
committed by GitHub
parent 5165ea265d
commit fd0d5350be

View File

@@ -91,6 +91,8 @@ class RutubeBridge extends BridgeAbstract
$video->description . ' '
)
);
$item->setTimestamp($video->created_ts);
$item->setAuthor($video->author->name);
$item->setContent($content);
$this->items[] = $item;
}