We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10d7733 commit bd8725fCopy full SHA for bd8725f
1 file changed
app/src/main/java/org/gnucash/android/ui/export/ExportFormFragment.java
@@ -502,12 +502,9 @@ private void selectExportFile() {
502
createIntent.setType("*/*").addCategory(Intent.CATEGORY_OPENABLE);
503
String bookName = BooksDbAdapter.getInstance().getActiveBookDisplayName();
504
505
+ String filename = Exporter.buildExportFilename(mExportFormat, bookName);
506
if (mExportFormat == ExportFormat.QIF) {
507
createIntent.setType("application/zip");
- }
508
-
509
- String filename = Exporter.buildExportFilename(mExportFormat, bookName);
510
- if (mExportTarget == ExportParams.ExportTarget.URI && mExportFormat == ExportFormat.QIF){
511
filename += ".zip";
512
}
513
0 commit comments