diff --git a/src/Core/Services/CipherService.cs b/src/Core/Services/CipherService.cs index 4809cd59c..fd8ae51fa 100644 --- a/src/Core/Services/CipherService.cs +++ b/src/Core/Services/CipherService.cs @@ -342,7 +342,12 @@ namespace Bit.Core.Services continue; } var match = false; - switch (u.Match) + var toMatch = defaultMatch; + if (u.Match != null) + { + toMatch = u.Match; + } + switch (toMatch) { case null: case UriMatchType.Domain: