mirror of
https://github.com/bitwarden/android.git
synced 2024-12-25 02:18:27 +03:00
dont set uri if null
This commit is contained in:
parent
cb22572f2b
commit
a019b9e1d3
1 changed files with 6 additions and 0 deletions
|
@ -20,6 +20,12 @@ namespace Bit.Android.Autofill
|
||||||
get => _uri;
|
get => _uri;
|
||||||
set
|
set
|
||||||
{
|
{
|
||||||
|
if(string.IsNullOrWhiteSpace(value))
|
||||||
|
{
|
||||||
|
_uri = null;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
_uri = $"androidapp://{value}";
|
_uri = $"androidapp://{value}";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue