Merge pull request #312 from tom93/pr/fix-export-missing-file-extension

Fix missing .json file extension when exporting call history
This commit is contained in:
Naveen Singh
2025-03-15 08:57:58 +05:30
committed by GitHub

View File

@@ -343,7 +343,7 @@ class SettingsActivity : SimpleActivity() {
private fun setupCallsExport() {
binding.settingsExportCallsHolder.setOnClickListener {
ExportCallHistoryDialog(this) { filename ->
saveDocument.launch(filename)
saveDocument.launch("$filename.json")
}
}
}