mirror of
https://github.com/bitwarden/mobile
synced 2025-12-20 02:03:49 +00:00
check internet connection before calling server
This commit is contained in:
@@ -112,7 +112,8 @@ namespace Bit.App.Pages
|
||||
if(fuzzy)
|
||||
{
|
||||
var options = new List<string> { AppResources.Yes };
|
||||
if(cipher.Type == CipherType.Login)
|
||||
if(cipher.Type == CipherType.Login &&
|
||||
Xamarin.Essentials.Connectivity.NetworkAccess != Xamarin.Essentials.NetworkAccess.None)
|
||||
{
|
||||
options.Add(AppResources.YesAndSave);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user