3
3
Fork 1
mirror of https://github.com/recloudstream/cloudstream.git synced 2024-08-15 01:53:11 +00:00

Fix ordinal

This commit is contained in:
firelight 2024-07-29 00:40:41 +02:00 committed by GitHub
parent 558c37cc94
commit 7ae474caa9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -21,10 +21,10 @@ enum class ListSorting(@StringRes val stringRes: Int) {
RatingLow(R.string.sort_rating_asc),
UpdatedNew(R.string.sort_updated_new),
UpdatedOld(R.string.sort_updated_old),
ReleaseDateNew(R.string.sort_release_date_new),
ReleaseDateOld(R.string.sort_release_date_old),
AlphabeticalA(R.string.sort_alphabetical_a),
AlphabeticalZ(R.string.sort_alphabetical_z),
ReleaseDateNew(R.string.sort_release_date_new),
ReleaseDateOld(R.string.sort_release_date_old),
}
const val LAST_SYNC_API_KEY = "last_sync_api"
@ -134,4 +134,4 @@ class LibraryViewModel : ViewModel() {
MainActivity.reloadLibraryEvent -= ::reloadPages
super.onCleared()
}
}
}