mirror of
				https://github.com/TeamNewPipe/NewPipe
				synced 2025-11-04 01:03:00 +00:00 
			
		
		
		
	Remove backoff criteria: it never kicked in
It never kicked in since we are never returning a retry() Result, but always either success() or failure() (see createWork() function). Also, there is already a default (exponential backoff starting from 30 seconds), so no need to override it.
This commit is contained in:
		@@ -132,7 +132,6 @@ class NotificationWorker(
 | 
			
		||||
                TimeUnit.MILLISECONDS
 | 
			
		||||
            ).setConstraints(constraints)
 | 
			
		||||
                .addTag(WORK_TAG)
 | 
			
		||||
                .setBackoffCriteria(BackoffPolicy.LINEAR, 30, TimeUnit.MINUTES)
 | 
			
		||||
                .build()
 | 
			
		||||
 | 
			
		||||
            WorkManager.getInstance(context)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user