[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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

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;
}