1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-05 23:53:33 +00:00

Do not process hostname for regex logins (#987)

This commit is contained in:
Kyle Spearrin
2020-06-18 11:58:19 -04:00
committed by GitHub
parent a458b9bc88
commit ff994629de

View File

@@ -67,6 +67,10 @@ namespace Bit.Core.Models.View
{
get
{
if (Match == UriMatchType.RegularExpression)
{
return null;
}
if (_hostname == null && Uri != null)
{
_hostname = CoreHelpers.GetHostname(Uri);