mirror of
https://github.com/bitwarden/android.git
synced 2024-12-25 02:18:27 +03:00
Don't index a "never" uri match.
This commit is contained in:
parent
b0b7f2afdf
commit
429e62e6b5
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ namespace Bit.iOS.Core.Utilities
|
|||
{
|
||||
return null;
|
||||
}
|
||||
var uri = cipher.Login.Uris.FirstOrDefault()?.Uri;
|
||||
var uri = cipher.Login.Uris.FirstOrDefault(u => u.Match != Bit.Core.Enums.UriMatchType.Never)?.Uri;
|
||||
if(string.IsNullOrWhiteSpace(uri))
|
||||
{
|
||||
return null;
|
||||
|
|
Loading…
Reference in a new issue