1
0
mirror of https://github.com/iv-org/invidious.git synced 2025-01-12 09:42:30 +05:30

Fix subscription feed for latest unseen videos

This commit is contained in:
Omar Roth 2018-11-17 13:37:27 -06:00
parent cd482cfd89
commit 879586d7f5

@ -1620,7 +1620,7 @@ get "/feed/subscriptions" do |env|
end
videos = PG_DB.query_all("SELECT DISTINCT ON (ucid) * FROM #{view_name} WHERE \
id NOT IN (#{watched}) ORDER BY published, ucid #{sort}",
id NOT IN (#{watched}) ORDER BY ucid, published #{sort}",
user.watched, as: ChannelVideo)
else
videos = PG_DB.query_all("SELECT DISTINCT ON (ucid) * FROM #{view_name} \