diff --git a/package.json b/package.json
index e86c5b999df..6f8f962c4e7 100644
--- a/package.json
+++ b/package.json
@@ -8,7 +8,7 @@
"@peculiar/x509": "1.9.5",
"@wireapp/avs": "9.5.2",
"@wireapp/commons": "5.2.3",
- "@wireapp/core": "43.1.3",
+ "@wireapp/core": "43.1.4",
"@wireapp/react-ui-kit": "9.12.2",
"@wireapp/store-engine-dexie": "2.1.6",
"@wireapp/webapp-events": "0.18.3",
diff --git a/src/script/components/VerificationBadge/VerificationBadges.tsx b/src/script/components/VerificationBadge/VerificationBadges.tsx
index 13627ee6d4f..c635d0fd0aa 100644
--- a/src/script/components/VerificationBadge/VerificationBadges.tsx
+++ b/src/script/components/VerificationBadge/VerificationBadges.tsx
@@ -96,7 +96,7 @@ export const DeviceVerificationBadges = ({
device: ClientEntity;
getIdentity?: (deviceId: string) => WireIdentity | undefined;
}) => {
- const MLSStatus = getIdentity ? getIdentity(device.id)?.status ?? MLSStatuses.NOT_DOWNLOADED : undefined;
+ const MLSStatus = getIdentity?.(device.id)?.status;
return (