From e970bf185aa1e7385ed75bc769df4463de138782 Mon Sep 17 00:00:00 2001 From: Sylvia van Os Date: Thu, 15 Jul 2021 22:45:12 +0200 Subject: [PATCH] Lowercase .zip filename --- app/src/main/java/protect/card_locker/ImportExportActivity.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/protect/card_locker/ImportExportActivity.java b/app/src/main/java/protect/card_locker/ImportExportActivity.java index cf1f05c0b..ad4d38c44 100644 --- a/app/src/main/java/protect/card_locker/ImportExportActivity.java +++ b/app/src/main/java/protect/card_locker/ImportExportActivity.java @@ -79,7 +79,7 @@ public class ImportExportActivity extends AppCompatActivity final Intent intentCreateDocumentAction = new Intent(Intent.ACTION_CREATE_DOCUMENT); intentCreateDocumentAction.addCategory(Intent.CATEGORY_OPENABLE); intentCreateDocumentAction.setType("application/zip"); - intentCreateDocumentAction.putExtra(Intent.EXTRA_TITLE, "Catima.zip"); + intentCreateDocumentAction.putExtra(Intent.EXTRA_TITLE, "catima.zip"); Button exportButton = findViewById(R.id.exportButton); exportButton.setOnClickListener(new View.OnClickListener()