Skip to content

Commit

Permalink
Merge pull request #136 from tom93/fix-export-missing-file-extension
Browse files Browse the repository at this point in the history
Fix missing .json file extension when exporting messages
  • Loading branch information
naveensingh authored Nov 29, 2024
2 parents d6b3d3b + 7e2202b commit 826a7d6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ class SettingsActivity : SimpleActivity() {
private fun setupMessagesExport() {
binding.settingsExportMessagesHolder.setOnClickListener {
ExportMessagesDialog(this) { fileName ->
saveDocument.launch(fileName)
saveDocument.launch("$fileName.json")
}
}
}
Expand Down

0 comments on commit 826a7d6

Please sign in to comment.