fix: ensure progress is sent before onEnd callback (#3872)

* fix: add onProgress event before onEnd
This commit is contained in:
Olivier Bouillet
2024-06-03 12:13:52 +02:00
committed by GitHub
parent adedc052f0
commit 7133c96cac
3 changed files with 38 additions and 30 deletions

View File

@@ -57,9 +57,7 @@ class Source {
}
/** return true if this and src are equals */
fun isEquals(source: Source): Boolean {
return this == source
}
fun isEquals(source: Source): Boolean = this == source
/** Metadata to display in notification */
class Metadata {