mirror of
https://github.com/bitwarden/mobile.git
synced 2024-11-27 12:26:31 +01:00
dont set uri if null
This commit is contained in:
parent
cb22572f2b
commit
a019b9e1d3
@ -20,6 +20,12 @@ namespace Bit.Android.Autofill
|
||||
get => _uri;
|
||||
set
|
||||
{
|
||||
if(string.IsNullOrWhiteSpace(value))
|
||||
{
|
||||
_uri = null;
|
||||
return;
|
||||
}
|
||||
|
||||
_uri = $"androidapp://{value}";
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user