1
0
mirror of https://github.com/iv-org/invidious.git synced 2025-04-15 21:32:59 -04:00

HTML: Sort playlists alphabetically in watch page drop down ()

Closes issue 4708
This commit is contained in:
Samantaz Fox 2024-08-24 20:50:46 +02:00
commit c5fdd9ea65
No known key found for this signature in database
GPG Key ID: F42821059186176E

@ -140,6 +140,7 @@ module Invidious::Database::Playlists
request = <<-SQL
SELECT id,title FROM playlists
WHERE author = $1 AND id LIKE 'IV%'
ORDER BY title
SQL
PG_DB.query_all(request, email, as: {String, String})