mirror of
https://github.com/bitwarden/android.git
synced 2026-06-04 11:46:51 -05:00
Remove now-unnecessary unlocking check when calling sync (#1004)
This commit is contained in:
committed by
Álison Fernandes
parent
1bb489a206
commit
e115c51e36
@@ -298,7 +298,7 @@ class VaultRepositoryImpl(
|
||||
|
||||
override fun sync() {
|
||||
val userId = activeUserId ?: return
|
||||
if (!syncJob.isCompleted || isVaultUnlocking(userId)) return
|
||||
if (!syncJob.isCompleted) return
|
||||
mutableCiphersStateFlow.updateToPendingOrLoading()
|
||||
mutableDomainsStateFlow.updateToPendingOrLoading()
|
||||
mutableFoldersStateFlow.updateToPendingOrLoading()
|
||||
|
||||
Reference in New Issue
Block a user