mirror of
https://github.com/bitwarden/android.git
synced 2024-12-26 02:48:29 +03:00
fix ui thread issue
This commit is contained in:
parent
d17da80f19
commit
e0fda1a0bc
1 changed files with 2 additions and 2 deletions
|
@ -21,7 +21,7 @@ namespace Bit.App.Pages
|
||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
_vm = BindingContext as LockPageViewModel;
|
_vm = BindingContext as LockPageViewModel;
|
||||||
_vm.Page = this;
|
_vm.Page = this;
|
||||||
_vm.UnlockedAction = () =>
|
_vm.UnlockedAction = () => Device.BeginInvokeOnMainThread(() =>
|
||||||
{
|
{
|
||||||
if(_appOptions != null)
|
if(_appOptions != null)
|
||||||
{
|
{
|
||||||
|
@ -37,7 +37,7 @@ namespace Bit.App.Pages
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Application.Current.MainPage = new TabsPage(_appOptions);
|
Application.Current.MainPage = new TabsPage(_appOptions);
|
||||||
};
|
});
|
||||||
MasterPasswordEntry = _masterPassword;
|
MasterPasswordEntry = _masterPassword;
|
||||||
PinEntry = _pin;
|
PinEntry = _pin;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue