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

View file

@ -1620,7 +1620,7 @@ get "/feed/subscriptions" do |env|
end end
videos = PG_DB.query_all("SELECT DISTINCT ON (ucid) * FROM #{view_name} WHERE \ 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) user.watched, as: ChannelVideo)
else else
videos = PG_DB.query_all("SELECT DISTINCT ON (ucid) * FROM #{view_name} \ videos = PG_DB.query_all("SELECT DISTINCT ON (ucid) * FROM #{view_name} \