Removed external message storage

This commit is contained in:
M66B 2023-12-12 08:18:34 +01:00
parent 739cee03bb
commit 84deb380dd
2 changed files with 1 additions and 13 deletions

View File

@ -619,21 +619,11 @@ public class EntityMessage implements Serializable {
}
static File getFile(Context context, Long id) {
File root = Helper.ensureExists(new File(getRoot(context), "messages"));
File root = Helper.ensureExists(new File(context.getFilesDir(), "messages"));
File dir = Helper.ensureExists(new File(root, "D" + (id / 1000)));
return new File(dir, id.toString());
}
static File getRoot(Context context) {
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
boolean external_storage = prefs.getBoolean("external_storage_message", false);
File root = (external_storage
? Helper.getExternalFilesDir(context)
: context.getFilesDir());
return root;
}
static void convert(Context context) {
File root = new File(context.getFilesDir(), "messages");
List<File> files = Helper.listFiles(root);

View File

@ -1094,8 +1094,6 @@ public class FragmentOptionsMisc extends FragmentBase implements SharedPreferenc
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
SharedPreferences.Editor editor = prefs.edit();
editor.putBoolean("external_storage", isChecked);
if (BuildConfig.DEBUG)
editor.putBoolean("external_storage_message", isChecked);
editor.apply();
Bundle args = new Bundle();