Диалог изменения имени

This commit is contained in:
Пытков Роман
2025-01-28 20:53:14 +03:00
parent e1e7b48989
commit b375189e55
15 changed files with 239 additions and 69 deletions

View File

@@ -35,7 +35,7 @@ class LocalStorage(
private val _accessor = LocalStorageAccessor(absolutePath, ioDispatcher)
override val accessor: IStorageAccessor = _accessor
override val isVirtualStorage: Boolean = false
private val metaInfoFileName: String = "$uuid$ENC_INFO_FILE_POSTFIX"
private val metaInfoFileName: String = "$uuid$STORAGE_INFO_FILE_POSTFIX"
suspend fun init() {
_accessor.init()
@@ -91,7 +91,7 @@ class LocalStorage(
}
companion object {
const val ENC_INFO_FILE_POSTFIX = ".enc-info"
const val STORAGE_INFO_FILE_POSTFIX = ".storage-info"
private val jackson = jacksonObjectMapper().apply { findAndRegisterModules() }
}
}