Return job failure if library update actually doesn't start
Cette révision appartient à :
Parent
c4ca3606ad
révision
772929b5c6
1 fichiers modifiés avec 5 ajouts et 2 suppressions
|
@ -17,8 +17,11 @@ class LibraryUpdateJob(private val context: Context, workerParams: WorkerParamet
|
|||
Worker(context, workerParams) {
|
||||
|
||||
override fun doWork(): Result {
|
||||
LibraryUpdateService.start(context)
|
||||
return Result.success()
|
||||
return if (LibraryUpdateService.start(context)) {
|
||||
Result.success()
|
||||
} else {
|
||||
Result.failure()
|
||||
}
|
||||
}
|
||||
|
||||
companion object {
|
||||
|
|
Référencer dans un nouveau ticket