mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-23 05:33:07 +05:30
Fix 'order' expression
This commit is contained in:
parent
d6d73bd336
commit
588f9b9bd6
@ -1680,7 +1680,7 @@ get "/feed/subscriptions" do |env|
|
||||
user.watched, as: ChannelVideo)
|
||||
else
|
||||
videos = PG_DB.query_all("SELECT DISTINCT ON (ucid) * FROM #{view_name} \
|
||||
ORDER BY published, ucid #{sort}", as: ChannelVideo)
|
||||
ORDER BY ucid, published #{sort}", as: ChannelVideo)
|
||||
end
|
||||
|
||||
videos.sort_by! { |video| video.published }.reverse!
|
||||
|
Loading…
Reference in New Issue
Block a user