From 0fa95bbccabd4a6882657149136b9473e33a043d Mon Sep 17 00:00:00 2001 From: Roberto Nobrega Date: Sun, 4 Oct 2020 16:33:49 -0300 Subject: [PATCH] Increase MAX_SIZE_CRC32 from 500M to 1G --- .../swordfish/lemuroid/lib/storage/local/DocumentFileParser.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/retrograde-app-shared/src/main/java/com/swordfish/lemuroid/lib/storage/local/DocumentFileParser.kt b/retrograde-app-shared/src/main/java/com/swordfish/lemuroid/lib/storage/local/DocumentFileParser.kt index 4d053fe00b..576f2d4d53 100644 --- a/retrograde-app-shared/src/main/java/com/swordfish/lemuroid/lib/storage/local/DocumentFileParser.kt +++ b/retrograde-app-shared/src/main/java/com/swordfish/lemuroid/lib/storage/local/DocumentFileParser.kt @@ -14,7 +14,7 @@ object DocumentFileParser { private const val MAX_CHECKED_ENTRIES = 3 private const val SINGLE_ARCHIVE_THRESHOLD = 0.9 - private const val MAX_SIZE_CRC32 = 500_000_000 + private const val MAX_SIZE_CRC32 = 1_000_000_000 fun parseDocumentFile(context: Context, baseStorageFile: BaseStorageFile): StorageFile { return if (baseStorageFile.extension == "zip") {