Fix 'latest only' feed

This commit is contained in:
Omar Roth 2018-10-09 18:39:19 -05:00
parent 02335f3390
commit ccc423f682

View file

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