From 0b1c57b39f66ca34f88bfeb96d2cd1cafb37a1c6 Mon Sep 17 00:00:00 2001 From: Omar Roth Date: Fri, 7 Jun 2019 21:27:37 -0500 Subject: [PATCH] Add notifications to private feed --- src/invidious.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/invidious.cr b/src/invidious.cr index 573855c7..97de3fd0 100644 --- a/src/invidious.cr +++ b/src/invidious.cr @@ -2547,7 +2547,7 @@ get "/feed/private" do |env| href: "#{host_url}#{env.request.resource}") xml.element("title") { xml.text translate(locale, "Invidious Private Feed for `x`", user.email) } - videos.each do |video| + (notifications + videos).each do |video| video.to_xml(locale, host_url, xml) end end