Backup file extension fix

This commit is contained in:
merkost 2023-07-15 22:14:24 +10:00
parent 7c142490ed
commit 141ab9f70c
1 changed files with 2 additions and 2 deletions

View File

@ -105,7 +105,7 @@ fun Context.backupContacts() {
mkdirs()
}
var exportFile = File(outputFolder, "$filename.json")
var exportFile = File(outputFolder, "$filename.vcf")
var exportFilePath = exportFile.absolutePath
val outputStream = try {
if (hasProperStoredFirstParentUri(exportFilePath)) {
@ -118,7 +118,7 @@ fun Context.backupContacts() {
var num = 0
while (getDoesFilePathExist(exportFilePath) && !exportFile.canWrite()) {
num++
exportFile = File(outputFolder, "${filename}_${num}.json")
exportFile = File(outputFolder, "${filename}_${num}.vcf")
exportFilePath = exportFile.absolutePath
}
FileOutputStream(exportFile)