andylamax
10/21/2022, 5:37 PMonUpload
extension method, is not behaving as intended (at least on JS Browser). It invokes the onUpload
callback multiple times (until it reaches 100%) before it even starts sending the bytes over the network. Leaving with a very long pause for large files while the bytes are being sent over the network. Is this a bug? if so, how do I file it? github? or YT?
Also, has anyone experienced this as well?? If so, how did you work around it?Trevor Stone
10/21/2022, 5:43 PMpublic typealias ProgressListener = suspend (bytesSentTotal: Long, contentLength: Long) -> Unit
This is the callback type which seems intended to be called multiple timesAleksei Tirman [JB]
10/21/2022, 5:48 PMandylamax
10/22/2022, 12:56 AMandylamax
10/22/2022, 12:56 AMAleksei Tirman [JB]
10/24/2022, 9:35 AMandylamax
10/24/2022, 9:57 AMAleksei Tirman [JB]
10/24/2022, 10:33 AM