1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-13 14:53:18 +00:00

PM-3227 Avoid clone on discoverable passkeys. (#2648)

This commit is contained in:
Federico Maccaroni
2023-07-27 18:35:09 -03:00
committed by GitHub
parent 9eda015371
commit 375718f945
3 changed files with 17 additions and 4 deletions

View File

@@ -120,5 +120,7 @@ namespace Bit.Core.Models.View
public bool CanLaunch => Login?.CanLaunch == true || Fido2Key?.CanLaunch == true;
public string LaunchUri => Login?.LaunchUri ?? Fido2Key?.LaunchUri;
public bool IsClonable => OrganizationId is null && Type != CipherType.Fido2Key;
}
}