diff options
author | 2025-01-25 22:40:13 +0500 | |
---|---|---|
committer | 2025-01-25 18:40:13 +0100 | |
commit | bd7d1734c35e771ab62c89afd6a8e2dfb89bacfa (patch) | |
tree | 680eacbed73501637d06e3d0d1e34921cfd268a0 | |
parent | dd8bc077edc5b1af664b4fae9d63a16467e02c17 (diff) | |
download | rss-bridge-bd7d1734c35e771ab62c89afd6a8e2dfb89bacfa.tar.gz rss-bridge-bd7d1734c35e771ab62c89afd6a8e2dfb89bacfa.tar.zst rss-bridge-bd7d1734c35e771ab62c89afd6a8e2dfb89bacfa.zip |
[RutubeBridge] Use publication time instead of creation time (#4417)
Publication time is shown in video page itself, so it is more essential
-rw-r--r-- | bridges/RutubeBridge.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bridges/RutubeBridge.php b/bridges/RutubeBridge.php index 6e48c27a..ba8ddde4 100644 --- a/bridges/RutubeBridge.php +++ b/bridges/RutubeBridge.php @@ -132,7 +132,7 @@ class RutubeBridge extends BridgeAbstract $video->description . ' ' ) ); - $item['timestamp'] = $video->created_ts; + $item['timestamp'] = $video->publication_ts; $item['author'] = $video->author->name; $item['content'] = $content; |