1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-15 15:53:44 +00:00

crash fixes

This commit is contained in:
Kyle Spearrin
2019-06-14 08:05:28 -04:00
parent 636d3c02c4
commit dcb1102746
3 changed files with 11 additions and 3 deletions

View File

@@ -94,7 +94,11 @@ namespace Bit.App.Services
if((uri.StartsWith("http://") || uri.StartsWith("https://")) &&
Uri.TryCreate(uri, UriKind.Absolute, out var parsedUri))
{
Browser.OpenAsync(uri, BrowserLaunchMode.External);
try
{
Browser.OpenAsync(uri, BrowserLaunchMode.External);
}
catch(FeatureNotSupportedException) { }
}
else
{