mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 07:35:52 +03:00
crash fixes
This commit is contained in:
parent
c6a40bac03
commit
f33248aa4f
2 changed files with 10 additions and 9 deletions
|
@ -487,15 +487,15 @@ namespace Bit.Android.Services
|
||||||
{
|
{
|
||||||
InputType = global::Android.Text.InputTypes.ClassText
|
InputType = global::Android.Text.InputTypes.ClassText
|
||||||
};
|
};
|
||||||
if(text != null)
|
|
||||||
|
if(text == null)
|
||||||
{
|
{
|
||||||
|
text = string.Empty;
|
||||||
|
}
|
||||||
|
|
||||||
input.Text = text;
|
input.Text = text;
|
||||||
input.SetSelection(text.Length);
|
input.SetSelection(text.Length);
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
input.FocusedByDefault = true;
|
|
||||||
}
|
|
||||||
alertBuilder.SetView(input);
|
alertBuilder.SetView(input);
|
||||||
|
|
||||||
var result = new TaskCompletionSource<string>();
|
var result = new TaskCompletionSource<string>();
|
||||||
|
|
|
@ -676,8 +676,9 @@ namespace Bit.App.Models.Page
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
public string Label => IsWebsite ? AppResources.Website : AppResources.URI;
|
public string Label => IsWebsite ? AppResources.Website : AppResources.URI;
|
||||||
public bool IsWebsite => Value.StartsWith("http://") || Value.StartsWith("https://");
|
public bool IsWebsite => Value == null ? false :
|
||||||
public bool IsApp => Value.StartsWith(Constants.AndroidAppProtocol);
|
Value.StartsWith("http://") || Value.StartsWith("https://");
|
||||||
|
public bool IsApp => Value == null ? false : Value.StartsWith(Constants.AndroidAppProtocol);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue