Added option to move complete thread

This commit is contained in:
M66B
2023-07-12 08:31:04 +02:00
parent 9fc6183e3b
commit d7fe9dbbbe
6 changed files with 71 additions and 37 deletions

View File

@@ -720,6 +720,11 @@ public class ApplicationEx extends Application
if (!prefs.contains("filter_" + type + "_" + name))
editor.putBoolean("filter_" + type + "_" + name, prefs.getBoolean("filter_" + name, false));
}
} else if (version < 2084) {
boolean thread_sent_trash = prefs.getBoolean("thread_sent_trash", false);
if (thread_sent_trash)
editor.putBoolean("move_thread_sent", true);
editor.remove("thread_sent_trash");
}
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O && !BuildConfig.DEBUG)