mirror of
				https://github.com/mihonapp/mihon.git
				synced 2025-10-31 14:27:57 +01:00 
			
		
		
		
	Return job failure if library update actually doesn't start
(cherry picked from commit 772929b5c6)
			
			
This commit is contained in:
		| @@ -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 { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user