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
1 changed files with 1 additions and 1 deletions

View File

@ -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} \