mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-14 17:22:56 -07:00
Use collection.title if collection.sortTitle is None
This commit is contained in:
parent
43ab2f22a8
commit
d5705a52e9
1 changed files with 1 additions and 1 deletions
|
@ -182,7 +182,7 @@ def get_collections(section_id=None):
|
||||||
'summary': collection.summary,
|
'summary': collection.summary,
|
||||||
'thumb': collection.thumb,
|
'thumb': collection.thumb,
|
||||||
'title': collection.title,
|
'title': collection.title,
|
||||||
'titleSort': collection.titleSort,
|
'titleSort': collection.titleSort or collection.title,
|
||||||
'type': collection.type,
|
'type': collection.type,
|
||||||
'updatedAt': helpers.datetime_to_iso(collection.updatedAt)
|
'updatedAt': helpers.datetime_to_iso(collection.updatedAt)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue