From 8ed7418fe41d314342ae5cf9bb50c78d46b8b7b1 Mon Sep 17 00:00:00 2001 From: Luna712 <142361265+Luna712@users.noreply.github.com> Date: Sat, 14 Oct 2023 10:30:45 -0600 Subject: [PATCH] Enable sorting by updated date in LocalList --- .../cloudstream3/syncproviders/providers/LocalList.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/src/main/java/com/lagradost/cloudstream3/syncproviders/providers/LocalList.kt b/app/src/main/java/com/lagradost/cloudstream3/syncproviders/providers/LocalList.kt index 71bb2633..0c01c0d5 100644 --- a/app/src/main/java/com/lagradost/cloudstream3/syncproviders/providers/LocalList.kt +++ b/app/src/main/java/com/lagradost/cloudstream3/syncproviders/providers/LocalList.kt @@ -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, )