Browse Source

Validate backup during creation

arkon 3 years ago
parent
commit
4f56071786

+ 6 - 1
app/src/main/java/eu/kanade/tachiyomi/data/backup/full/FullBackupManager.kt

@@ -85,7 +85,12 @@ class FullBackupManager(context: Context) : AbstractBackupManager(context) {
 
 
             val byteArray = parser.encodeToByteArray(BackupSerializer, backup!!)
             val byteArray = parser.encodeToByteArray(BackupSerializer, backup!!)
             file.openOutputStream().sink().gzip().buffer().use { it.write(byteArray) }
             file.openOutputStream().sink().gzip().buffer().use { it.write(byteArray) }
-            return file.uri.toString()
+            val fileUri = file.uri
+
+            // Validate it to make sure it works
+            FullBackupRestoreValidator().validate(context, fileUri)
+
+            return fileUri.toString()
         } catch (e: Exception) {
         } catch (e: Exception) {
             logcat(LogPriority.ERROR, e)
             logcat(LogPriority.ERROR, e)
             throw e
             throw e