From 0cc1fc2dbf94cf3244bcffdc46d582b9f1c600bc Mon Sep 17 00:00:00 2001 From: Avently <7953703+avently@users.noreply.github.com> Date: Thu, 12 Dec 2024 19:01:18 +0700 Subject: [PATCH] rename --- .../kotlin/chat/simplex/common/platform/Files.android.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/multiplatform/common/src/androidMain/kotlin/chat/simplex/common/platform/Files.android.kt b/apps/multiplatform/common/src/androidMain/kotlin/chat/simplex/common/platform/Files.android.kt index 2b601fea42..03012e318c 100644 --- a/apps/multiplatform/common/src/androidMain/kotlin/chat/simplex/common/platform/Files.android.kt +++ b/apps/multiplatform/common/src/androidMain/kotlin/chat/simplex/common/platform/Files.android.kt @@ -19,7 +19,7 @@ actual val wallpapersDir: File = File(filesDir.absolutePath + File.separator + " actual val coreTmpDir: File = File(filesDir.absolutePath + File.separator + "temp_files") actual val dbAbsolutePrefixPath: String = dataDir.absolutePath + File.separator + "files" actual val preferencesDir = File(dataDir.absolutePath + File.separator + "shared_prefs") -actual val preferencesTmpDir = File(tmpDir, "settings_tmp") +actual val preferencesTmpDir = File(tmpDir, "prefs_tmp") .also { it.deleteRecursively() } actual val chatDatabaseFileName: String = "files_chat.db"