mirror of
				https://github.com/InsanusMokrassar/MicroUtils.git
				synced 2025-11-04 06:00:22 +00:00 
			
		
		
		
	fixes in download file and upgrade ktor version
This commit is contained in:
		@@ -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"
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -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)
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user