1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-07 11:03:54 +00:00

[FIX] Consider default URI match type on filtering (#830)

This commit is contained in:
Jose F. Fernandez
2020-04-14 20:56:57 +02:00
committed by GitHub
parent 1dc027cf49
commit ed259cd130

View File

@@ -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: