mirror of
https://github.com/bitwarden/mobile
synced 2025-12-15 15:53:44 +00:00
crash fixes
This commit is contained in:
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user