Merge pull request #690 from Luna712/locallist-sort

Enable sorting by updated date in LocalList
This commit is contained in:
firelight 2023-10-20 13:31:46 +00:00 committed by GitHub
commit c9bffef7cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -80,7 +80,7 @@ class LocalList : SyncAPI {
R.string.favorites_list_name to emptyList()
) + if (!isTv) {
mapOf(
R.string.subscription_list_name to emptyList(),
R.string.subscription_list_name to emptyList()
)
} else {
emptyMap()
@ -115,8 +115,8 @@ class LocalList : SyncAPI {
setOf(
ListSorting.AlphabeticalA,
ListSorting.AlphabeticalZ,
// ListSorting.UpdatedNew,
// ListSorting.UpdatedOld,
ListSorting.UpdatedNew,
ListSorting.UpdatedOld,
// ListSorting.RatingHigh,
// ListSorting.RatingLow,
)