Fix: Filme-Standardsortierung → IMDb DESC, Erscheinungsjahr DESC
This commit is contained in:
parent
07a888bbd8
commit
7474e10031
1 changed files with 1 additions and 1 deletions
|
|
@ -243,7 +243,7 @@ _SORT_COLS = {
|
|||
"jahr_asc": "m.jahr ASC",
|
||||
"imdb": "m.imdb_rating DESC",
|
||||
"bewertung": "community_avg DESC",
|
||||
"default": "m.sort_order ASC, m.jahr DESC",
|
||||
"default": "CASE WHEN m.imdb_rating IS NULL THEN 1 ELSE 0 END, m.imdb_rating DESC, m.jahr DESC",
|
||||
}
|
||||
|
||||
@router.get("/filme")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue