mirror of
https://github.com/mihonapp/mihon.git
synced 2025-03-14 02:08:28 +03:00
Return job failure if library update actually doesn't start
This commit is contained in:
parent
c4ca3606ad
commit
772929b5c6
1 changed files with 5 additions and 2 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue