TaskSyncer: accept nullable ResyncType (#1487)

Fix TaskSyncer constructor to accept nullable ResyncType
This commit is contained in:
Ricki Hirner
2025-05-22 19:42:34 +02:00
committed by GitHub
parent ec657519a9
commit 3efb8d5c62

View File

@@ -24,7 +24,7 @@ import kotlinx.coroutines.runBlocking
class TaskSyncer @AssistedInject constructor(
@Assisted account: Account,
@Assisted val providerName: TaskProvider.ProviderName,
@Assisted resync: ResyncType,
@Assisted resync: ResyncType?,
@Assisted syncResult: SyncResult,
localTaskListStoreFactory: LocalTaskListStore.Factory,
private val tasksAppManager: dagger.Lazy<TasksAppManager>,