diff --git a/app/src/main/java/org/thoughtcrime/securesms/backup/FullBackupImporter.java b/app/src/main/java/org/thoughtcrime/securesms/backup/FullBackupImporter.java index 3a394119b7..6e8b5236de 100644 --- a/app/src/main/java/org/thoughtcrime/securesms/backup/FullBackupImporter.java +++ b/app/src/main/java/org/thoughtcrime/securesms/backup/FullBackupImporter.java @@ -77,7 +77,8 @@ public class FullBackupImporter extends FullBackupBase { "msl_message", "reaction", "notification_profile_schedule", - "notification_profile_allowed_members" + "notification_profile_allowed_members", + "story_sends" }; public static void importFile(@NonNull Context context, @NonNull AttachmentSecret attachmentSecret, @@ -293,6 +294,7 @@ public class FullBackupImporter extends FullBackupBase { String type = cursor.getString(1); if ("table".equals(type) && !name.startsWith("sqlite_")) { + Log.i(TAG, "Dropping table: " + name); db.execSQL("DROP TABLE IF EXISTS " + name); } }