Default the search sort setting to former sorting behavior.

This commit is contained in:
j4mm3ris 2025-12-07 21:39:10 +02:00
parent b46fea6890
commit df2bf43492
2 changed files with 2 additions and 2 deletions

View file

@ -678,6 +678,6 @@ object Preferences {
@JvmStatic
fun isSearchSortingChronologicallyEnabled(): Boolean {
return App.getInstance().preferences.getBoolean(SORT_SEARCH_CHRONOLOGICALLY, true)
return App.getInstance().preferences.getBoolean(SORT_SEARCH_CHRONOLOGICALLY, false)
}
}