fixes in download file and upgrade ktor version

This commit is contained in:
InsanusMokrassar 2023-02-01 22:28:17 +06:00
parent 47b0f6d2d8
commit 580d757be2
2 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@ jb-dokka = "1.7.20"
klock = "3.4.0"
uuid = "0.6.0"
ktor = "2.2.2"
ktor = "2.2.3"
gh-release = "2.4.1"

View File

@ -10,8 +10,8 @@ import java.io.File
fun PartData.FileItem.download(target: File) {
provider().use { input ->
target.outputStream().use {
input.copyTo(it.asOutput())
target.outputStream().asOutput().use {
input.copyTo(it)
}
}
}