1
0
mirror of https://github.com/iv-org/invidious.git synced 2025-04-15 15:39:12 +05:30

Channels: Fix "sort by oldest" ()

This commit is contained in:
Samantaz Fox 2023-06-21 22:28:15 +02:00
commit 75c4c0b349
No known key found for this signature in database
GPG Key ID: F42821059186176E

@ -20,7 +20,7 @@ def produce_channel_videos_continuation(ucid, page = 1, auto_generated = nil, so
case sort_by
when "newest" then 1_i64
when "popular" then 2_i64
when "oldest" then 3_i64 # Broken as of 10/2022 :c
when "oldest" then 4_i64
else 1_i64 # Fallback to "newest"
end