mirror of
https://github.com/bitwarden/android.git
synced 2024-12-19 07:41:52 +03:00
do not update activity on lock pages appearing
This commit is contained in:
parent
6cec61dc42
commit
fe422a101a
3 changed files with 3 additions and 4 deletions
|
@ -1,7 +1,6 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Acr.UserDialogs;
|
using Acr.UserDialogs;
|
||||||
using Bit.App.Abstractions;
|
|
||||||
using Bit.App.Controls;
|
using Bit.App.Controls;
|
||||||
using Bit.App.Resources;
|
using Bit.App.Resources;
|
||||||
using Xamarin.Forms;
|
using Xamarin.Forms;
|
||||||
|
@ -19,7 +18,7 @@ namespace Bit.App.Pages
|
||||||
private readonly bool _checkFingerprintImmediately;
|
private readonly bool _checkFingerprintImmediately;
|
||||||
|
|
||||||
public LockFingerprintPage(bool checkFingerprintImmediately)
|
public LockFingerprintPage(bool checkFingerprintImmediately)
|
||||||
: base(false)
|
: base(false, false)
|
||||||
{
|
{
|
||||||
_checkFingerprintImmediately = checkFingerprintImmediately;
|
_checkFingerprintImmediately = checkFingerprintImmediately;
|
||||||
_fingerprint = Resolver.Resolve<IFingerprint>();
|
_fingerprint = Resolver.Resolve<IFingerprint>();
|
||||||
|
|
|
@ -19,7 +19,7 @@ namespace Bit.App.Pages
|
||||||
private readonly ICryptoService _cryptoService;
|
private readonly ICryptoService _cryptoService;
|
||||||
|
|
||||||
public LockPasswordPage()
|
public LockPasswordPage()
|
||||||
: base(false)
|
: base(false, false)
|
||||||
{
|
{
|
||||||
_authService = Resolver.Resolve<IAuthService>();
|
_authService = Resolver.Resolve<IAuthService>();
|
||||||
_settings = Resolver.Resolve<ISettings>();
|
_settings = Resolver.Resolve<ISettings>();
|
||||||
|
|
|
@ -18,7 +18,7 @@ namespace Bit.App.Pages
|
||||||
private readonly ISettings _settings;
|
private readonly ISettings _settings;
|
||||||
|
|
||||||
public LockPinPage()
|
public LockPinPage()
|
||||||
: base(false)
|
: base(false, false)
|
||||||
{
|
{
|
||||||
_authService = Resolver.Resolve<IAuthService>();
|
_authService = Resolver.Resolve<IAuthService>();
|
||||||
_userDialogs = Resolver.Resolve<IUserDialogs>();
|
_userDialogs = Resolver.Resolve<IUserDialogs>();
|
||||||
|
|
Loading…
Reference in a new issue