summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/invidious/channels/channels.cr4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/invidious/channels/channels.cr b/src/invidious/channels/channels.cr
index b09d93b1..c3d6124f 100644
--- a/src/invidious/channels/channels.cr
+++ b/src/invidious/channels/channels.cr
@@ -199,7 +199,7 @@ def fetch_channel(ucid, pull_all_videos : Bool)
LOGGER.trace("fetch_channel: #{ucid} : Extracting videos from channel RSS feed")
rss.xpath_nodes("//default:feed/default:entry", namespaces).each do |entry|
- video_id = entry.xpath_node("yt:videoid", namespaces).not_nil!.content
+ video_id = entry.xpath_node("yt:videoId", namespaces).not_nil!.content
title = entry.xpath_node("default:title", namespaces).not_nil!.content
published = Time.parse_rfc3339(
@@ -210,7 +210,7 @@ def fetch_channel(ucid, pull_all_videos : Bool)
)
author = entry.xpath_node("default:author/default:name", namespaces).not_nil!.content
- ucid = entry.xpath_node("yt:channelid", namespaces).not_nil!.content
+ ucid = entry.xpath_node("yt:channelId", namespaces).not_nil!.content
views = entry
.xpath_node("media:group/media:community/media:statistics", namespaces)
-02-18 19:20:55 -0300'>2025-02-18Channels: Fix community tabFijxu 2025-01-28Use Crystal compiler cache in docker buildssyeopite 2025-01-28fix 5161 by checking recommended videos published field for presence instead ↵Drikanis of just not nil 2025-01-26remove ! on rejectepicsam123 2025-01-25Add Courses to channel page and channel APIChunkyProgrammer