Separate sort order unified folders

This commit is contained in:
M66B
2021-11-22 08:57:17 +01:00
parent f2daedcf7d
commit edb7ab16ac
2 changed files with 12 additions and 1 deletions

View File

@@ -543,6 +543,12 @@ public class ApplicationEx extends Application
repairFolders(context);
else if (version < 1772)
editor.remove("conversation_actions");
else if (version < 1781) {
if (prefs.contains("ascending_list")) {
boolean ascending = prefs.getBoolean("ascending_list", false);
editor.putBoolean("ascending_unified", ascending);
}
}
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O && !BuildConfig.DEBUG)
editor.remove("background_service");