Skip to content

Commit

Permalink
Merge branch 'release/candidate' into remove_crl_check_for_current_cl…
Browse files Browse the repository at this point in the history
…ient
  • Loading branch information
ohassine authored Mar 14, 2024
2 parents 42e1ecb + 76eebe6 commit 9737518
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ import com.wire.kalium.logic.functional.isRight
import com.wire.kalium.logic.functional.map
import com.wire.kalium.logic.functional.nullableFold
import com.wire.kalium.logic.functional.onFailure
import com.wire.kalium.logic.functional.right
import com.wire.kalium.logic.kaliumLogger
import com.wire.kalium.logic.sync.KaliumSyncException
import com.wire.kalium.logic.sync.slow.migration.steps.SyncMigrationStep
Expand Down Expand Up @@ -99,7 +100,10 @@ internal class SlowSyncWorkerImpl(
.continueWithStep(SlowSyncStep.LEGAL_HOLD) { fetchLegalHoldForSelfUserFromRemoteUseCase().map { } }
.continueWithStep(SlowSyncStep.CONTACTS, syncContacts::invoke)
.continueWithStep(SlowSyncStep.JOINING_MLS_CONVERSATIONS, joinMLSConversations::invoke)
.continueWithStep(SlowSyncStep.RESOLVE_ONE_ON_ONE_PROTOCOLS, oneOnOneResolver::resolveAllOneOnOneConversations)
.continueWithStep(SlowSyncStep.RESOLVE_ONE_ON_ONE_PROTOCOLS) {
oneOnOneResolver.resolveAllOneOnOneConversations()
Unit.right()
}
.flatMap {
saveLastProcessedEventIdIfNeeded(lastProcessedEventIdToSaveOnSuccess)
}
Expand Down

0 comments on commit 9737518

Please sign in to comment.