summaryrefslogtreecommitdiffstats
path: root/src/invidious.cr
diff options
context:
space:
mode:
Diffstat (limited to 'src/invidious.cr')
-rw-r--r--src/invidious.cr10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/invidious.cr b/src/invidious.cr
index b576148e..f93f17e4 100644
--- a/src/invidious.cr
+++ b/src/invidious.cr
@@ -2315,6 +2315,16 @@ get "/feed/playlist/:plid" do |env|
document
end
+get "/feeds/videos.xml" do |env|
+ if ucid = env.params.query["channel_id"]?
+ env.redirect "/feed/channel/#{ucid}"
+ elsif user = env.params.query["user"]?
+ env.redirect "/feed/channel/#{user}"
+ elsif plid = env.params.query["playlist_id"]?
+ env.redirect "/feed/playlist/#{plid}"
+ end
+end
+
# Support push notifications via PubSubHubbub
get "/feed/webhook/:token" do |env|