mirror of
https://github.com/SimpleMobileTools/Simple-Contacts.git
synced 2025-04-25 06:48:42 +02:00
Backup file extension fix
This commit is contained in:
parent
7c142490ed
commit
141ab9f70c
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user