mirror of
https://github.com/bitwarden/android.git
synced 2024-12-24 18:08:26 +03:00
[FIX] Consider default URI match type on filtering (#830)
This commit is contained in:
parent
1dc027cf49
commit
ed259cd130
1 changed files with 6 additions and 1 deletions
|
@ -342,7 +342,12 @@ namespace Bit.Core.Services
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
var match = false;
|
var match = false;
|
||||||
switch (u.Match)
|
var toMatch = defaultMatch;
|
||||||
|
if (u.Match != null)
|
||||||
|
{
|
||||||
|
toMatch = u.Match;
|
||||||
|
}
|
||||||
|
switch (toMatch)
|
||||||
{
|
{
|
||||||
case null:
|
case null:
|
||||||
case UriMatchType.Domain:
|
case UriMatchType.Domain:
|
||||||
|
|
Loading…
Reference in a new issue