mirror of
https://github.com/bitwarden/android.git
synced 2024-12-25 02:18:27 +03:00
Do not process hostname for regex logins (#987)
This commit is contained in:
parent
a458b9bc88
commit
ff994629de
1 changed files with 4 additions and 0 deletions
|
@ -67,6 +67,10 @@ namespace Bit.Core.Models.View
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
{
|
{
|
||||||
|
if (Match == UriMatchType.RegularExpression)
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
if (_hostname == null && Uri != null)
|
if (_hostname == null && Uri != null)
|
||||||
{
|
{
|
||||||
_hostname = CoreHelpers.GetHostname(Uri);
|
_hostname = CoreHelpers.GetHostname(Uri);
|
||||||
|
|
Loading…
Reference in a new issue