WeebCentral: Use descending as default sort order (#6181)

* WeebCentral: Use descending as default sort order

* WeebCentral: bump
This commit is contained in:
dngonz 2024-11-21 15:06:27 +01:00 committed by Draff
parent bb362356c2
commit 5713b09ff2
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
ext { ext {
extName = 'Weeb Central' extName = 'Weeb Central'
extClass = '.WeebCentral' extClass = '.WeebCentral'
extVersionCode = 3 extVersionCode = 4
isNsfw = true isNsfw = true
} }

View File

@ -80,8 +80,8 @@ class SortOrderFilter : UriPartFilter(
"Sort Order", "Sort Order",
"order", "order",
arrayOf( arrayOf(
Pair("Ascending", "Ascending"),
Pair("Descending", "Descending"), Pair("Descending", "Descending"),
Pair("Ascending", "Ascending"),
), ),
) )