mirror of
https://github.com/bitwarden/android.git
synced 2024-12-24 01:48:25 +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;
|
||||
set
|
||||
{
|
||||
if(string.IsNullOrWhiteSpace(value))
|
||||
{
|
||||
_uri = null;
|
||||
return;
|
||||
}
|
||||
|
||||
_uri = $"androidapp://{value}";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue