diff --git a/src/App/Controls/ExtendedContentPage.cs b/src/App/Controls/ExtendedContentPage.cs index d61eb4ef4..f261b7561 100644 --- a/src/App/Controls/ExtendedContentPage.cs +++ b/src/App/Controls/ExtendedContentPage.cs @@ -1,5 +1,4 @@ using Bit.App.Abstractions; -using System; using Xamarin.Forms; using XLabs.Ioc; @@ -37,5 +36,11 @@ namespace Bit.App.Controls googleAnalyticsService.TrackPage(GetType().Name); base.OnAppearing(); } + + protected override void OnDisappearing() + { + IsBusy = false; + base.OnDisappearing(); + } } }