mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 07:35:52 +03:00
remove no connection alert on appearing of pages
This commit is contained in:
parent
45dd240415
commit
d5b3bd5905
6 changed files with 0 additions and 26 deletions
|
@ -118,10 +118,6 @@ namespace Bit.App.Pages
|
||||||
{
|
{
|
||||||
base.OnAppearing();
|
base.OnAppearing();
|
||||||
NameCell.InitEvents();
|
NameCell.InitEvents();
|
||||||
if(!_connectivity.IsConnected)
|
|
||||||
{
|
|
||||||
AlertNoConnection();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override void OnDisappearing()
|
protected override void OnDisappearing()
|
||||||
|
|
|
@ -131,11 +131,6 @@ namespace Bit.App.Pages
|
||||||
base.OnAppearing();
|
base.OnAppearing();
|
||||||
NameCell.InitEvents();
|
NameCell.InitEvents();
|
||||||
DeleteCell.Tapped += DeleteCell_Tapped;
|
DeleteCell.Tapped += DeleteCell_Tapped;
|
||||||
|
|
||||||
if(!_connectivity.IsConnected)
|
|
||||||
{
|
|
||||||
AlertNoConnection();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override void OnDisappearing()
|
protected override void OnDisappearing()
|
||||||
|
|
|
@ -68,10 +68,6 @@ namespace Bit.App.Pages
|
||||||
protected override void OnAppearing()
|
protected override void OnAppearing()
|
||||||
{
|
{
|
||||||
base.OnAppearing();
|
base.OnAppearing();
|
||||||
if(!_connectivity.IsConnected)
|
|
||||||
{
|
|
||||||
AlertNoConnection();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void SetLastSync()
|
private void SetLastSync()
|
||||||
|
|
|
@ -177,10 +177,6 @@ namespace Bit.App.Pages
|
||||||
protected override void OnAppearing()
|
protected override void OnAppearing()
|
||||||
{
|
{
|
||||||
base.OnAppearing();
|
base.OnAppearing();
|
||||||
if(!_connectivity.IsConnected)
|
|
||||||
{
|
|
||||||
AlertNoConnection();
|
|
||||||
}
|
|
||||||
|
|
||||||
NameCell.InitEvents();
|
NameCell.InitEvents();
|
||||||
NotesCell.InitEvents();
|
NotesCell.InitEvents();
|
||||||
|
|
|
@ -667,11 +667,6 @@ namespace Bit.App.Pages
|
||||||
protected override void OnAppearing()
|
protected override void OnAppearing()
|
||||||
{
|
{
|
||||||
base.OnAppearing();
|
base.OnAppearing();
|
||||||
if(!_connectivity.IsConnected)
|
|
||||||
{
|
|
||||||
AlertNoConnection();
|
|
||||||
}
|
|
||||||
|
|
||||||
NameCell?.InitEvents();
|
NameCell?.InitEvents();
|
||||||
NotesCell?.InitEvents();
|
NotesCell?.InitEvents();
|
||||||
FolderCell?.InitEvents();
|
FolderCell?.InitEvents();
|
||||||
|
|
|
@ -112,10 +112,6 @@ namespace Bit.iOS.Extension
|
||||||
public override void ViewDidAppear(bool animated)
|
public override void ViewDidAppear(bool animated)
|
||||||
{
|
{
|
||||||
base.ViewDidAppear(animated);
|
base.ViewDidAppear(animated);
|
||||||
if(!_connectivity.IsConnected)
|
|
||||||
{
|
|
||||||
AlertNoConnection();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
partial void CancelBarButton_Activated(UIBarButtonItem sender)
|
partial void CancelBarButton_Activated(UIBarButtonItem sender)
|
||||||
|
|
Loading…
Reference in a new issue