Digger icon indicating copy to clipboard operation
Digger copied to clipboard

progress.fractionCompleted is always 1.0

Open dzpt opened this issue 6 years ago • 0 comments

Digger.download(self.fileurl.absoluteString)
			.progress { progress in
				print(progress.fractionCompleted)
			}
			.completion { result in
				switch result {
				case .success(let url):
					print(url)
					
				case .failure(let error):
					print(error)
				}
			}

Testing on ios 9.1 to 13.

dzpt avatar Oct 10 '19 03:10 dzpt