NTP-73732 | Hopper crash fix (#16614)

This commit is contained in:
Varun Jain
2025-06-17 14:46:40 +05:30
committed by GitHub
parent bd24449268
commit c687ff94a1

View File

@@ -67,7 +67,7 @@ class HopperProcessor @Inject constructor(private val viewModelMapper: ViewModel
private fun startNewJob() {
processorLastCancelationTime = 0
job = Job()
job?.let { job -> CoroutineScope(job + Dispatchers.IO).launch { onStart() } }
job?.let { job -> CoroutineScope(job + Dispatchers.Main).launch { onStart() } }
}
override fun onStart() {