mirror of
https://github.com/Kunzisoft/KeePassDX.git
synced 2025-04-04 05:17:36 +03:00
parent
9e714c4192
commit
05f689913f
4 changed files with 6 additions and 12 deletions
|
@ -779,7 +779,7 @@ open class Database {
|
|||
@Throws(DatabaseOutputException::class)
|
||||
fun saveData(
|
||||
cacheFile: File,
|
||||
databaseOutputStream: OutputStream?,
|
||||
databaseOutputStream: () -> OutputStream?,
|
||||
isNewLocation: Boolean,
|
||||
masterCredential: MasterCredential?,
|
||||
challengeResponseRetriever: (HardwareKey, ByteArray?) -> ByteArray
|
||||
|
@ -820,7 +820,7 @@ open class Database {
|
|||
}
|
||||
}
|
||||
// Copy from the cache to the final stream
|
||||
databaseOutputStream?.use { outputStream ->
|
||||
databaseOutputStream.invoke()?.use { outputStream ->
|
||||
cacheFile.inputStream().use { inputStream ->
|
||||
inputStream.readAllBytes { buffer ->
|
||||
outputStream.write(buffer)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue