Add collectionSort value for custom sort

This commit is contained in:
JonnyWong16 2020-10-12 21:32:16 -07:00
parent d4c8066209
commit 962777284a
No known key found for this signature in database
GPG key ID: B1F1F9807184697A

View file

@ -169,8 +169,8 @@ def get_collections(section_id=None):
'addedAt': helpers.datetime_to_iso(collection.addedAt), 'addedAt': helpers.datetime_to_iso(collection.addedAt),
'art': collection.art, 'art': collection.art,
'childCount': collection.childCount, 'childCount': collection.childCount,
'collectionMode': helpers.cast_to_int(collection_mode), 'collectionMode': collection_mode,
'collectionSort': helpers.cast_to_int(collection_sort), 'collectionSort': collection_sort,
'contentRating': collection.contentRating, 'contentRating': collection.contentRating,
'guid': collection.guid, 'guid': collection.guid,
'librarySectionID': collection.librarySectionID, 'librarySectionID': collection.librarySectionID,
@ -216,7 +216,8 @@ def get_collections_list(section_id=None, **kwargs):
}, },
'collectionSort': { 'collectionSort': {
0: 'Release date', 0: 'Release date',
1: 'Alphabetical' 1: 'Alphabetical',
2: 'Custom'
} }
} }