Add exported files to MediaStore

This commit is contained in:
Naveen
2023-03-26 14:14:54 +05:30
parent 21e22af609
commit e63b97f552

View File

@ -256,9 +256,9 @@ fun Context.backupEventsAndTasks() {
mkdirs() mkdirs()
} }
val exportPath = File(outputFolder, "$filename.ics") val exportFile = File(outputFolder, "$filename.ics")
val outputStream = try { val outputStream = try {
exportPath.outputStream() exportFile.outputStream()
} catch (e: Exception) { } catch (e: Exception) {
showErrorToast(e) showErrorToast(e)
null null
@ -270,6 +270,7 @@ fun Context.backupEventsAndTasks() {
IcsExporter.ExportResult.EXPORT_FAIL -> toast(R.string.exporting_failed) IcsExporter.ExportResult.EXPORT_FAIL -> toast(R.string.exporting_failed)
else -> {} else -> {}
} }
rescanPath(exportFile.absolutePath)
config.lastAutoBackupTime = getNowSeconds() config.lastAutoBackupTime = getNowSeconds()
} }
scheduleNextAutomaticBackup() scheduleNextAutomaticBackup()