mirror of
				https://github.com/mihonapp/mihon.git
				synced 2025-10-30 22:07:57 +01:00 
			
		
		
		
	Fix crash on updating trackers after reading with no network (closes #4207)
This commit is contained in:
		| @@ -673,14 +673,18 @@ class ReaderPresenter( | ||||
|                         // We want these to execute even if the presenter is destroyed and leaks | ||||
|                         // for a while. The view can still be garbage collected. | ||||
|                         async { | ||||
|                             service.update(track) | ||||
|                             db.insertTrack(track).await() | ||||
|                             runCatching { | ||||
|                                 service.update(track) | ||||
|                                 db.insertTrack(track).await() | ||||
|                             } | ||||
|                         } | ||||
|                     } else { | ||||
|                         null | ||||
|                     } | ||||
|                 } | ||||
|                 .awaitAll() | ||||
|                 .filter { it.isFailure } | ||||
|                 .forEach { it.exceptionOrNull()?.let { e -> Timber.w(e) } } | ||||
|         } | ||||
|     } | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user