From 53245986ab2499703701fb9023a6575f0157da0a Mon Sep 17 00:00:00 2001 From: MX <10697207+xMasterX@users.noreply.github.com> Date: Mon, 16 Oct 2023 05:29:23 +0300 Subject: [PATCH] Remove migration, not needed anymore --- .../system/storage_move_to_sd/storage_move_to_sd.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/applications/system/storage_move_to_sd/storage_move_to_sd.c b/applications/system/storage_move_to_sd/storage_move_to_sd.c index 5aaacd736..4a0f3f4ad 100644 --- a/applications/system/storage_move_to_sd/storage_move_to_sd.c +++ b/applications/system/storage_move_to_sd/storage_move_to_sd.c @@ -28,14 +28,6 @@ static void storage_move_to_sd_remove_region() { if(storage_common_exists(storage, INT_PATH(".region_data"))) { storage_common_remove(storage, INT_PATH(".region_data")); } - if(storage_common_exists(storage, EXT_PATH("apps/Misc/totp.conf"))) { - storage_common_rename( - storage, EXT_PATH("apps/Misc/totp.conf"), EXT_PATH("authenticator/totp.conf")); - } - if(storage_common_exists(storage, EXT_PATH("apps/Misc/barcodegen.save"))) { - storage_common_remove(storage, EXT_PATH("apps/Misc/barcodegen.save")); - storage_common_remove(storage, EXT_PATH("apps/Misc")); - } furi_record_close(RECORD_STORAGE); }