Update Bitwarden SDK to 0.3.1-20231221.163756-59 (#443)

This commit is contained in:
joshua-livefront 2023-12-28 12:43:49 -05:00 committed by Álison Fernandes
parent e92c85005b
commit de85f1c507
2 changed files with 3 additions and 2 deletions

View file

@ -84,9 +84,10 @@ fun VaultData.toViewState(): VaultState.ViewState =
.filter { it.folderId.isNullOrBlank() }
.mapNotNull { it.toVaultItemOrNull() },
collectionItems = collectionViewList
.filter { it.id != null }
.map { collectionView ->
VaultState.ViewState.CollectionItem(
id = collectionView.id,
id = requireNotNull(collectionView.id),
name = collectionView.name,
itemCount = cipherViewList
.count {

View file

@ -23,7 +23,7 @@ androidxRoom = "2.6.1"
androidxSplash = "1.1.0-alpha02"
# Once the app and SDK reach a critical point of completeness we should begin fixing the version
# here (BIT-311).
bitwardenSdk = "0.3.1-20231219.150921-55"
bitwardenSdk = "0.3.1-20231221.163756-59"
detekt = "1.23.1"
firebaseBom = "32.7.0"
glide = "1.0.0-beta01"