mirror of
https://github.com/bitwarden/mobile.git
synced 2024-11-12 10:04:43 +01:00
[SG-870] Add null check on notification received (#2221)
This commit is contained in:
parent
7785b2dbf9
commit
f4b4cfc9de
@ -141,7 +141,8 @@ namespace Bit.App.Services
|
|||||||
}
|
}
|
||||||
|
|
||||||
// if there is a request modal opened ignore all incoming requests
|
// if there is a request modal opened ignore all incoming requests
|
||||||
if (App.Current.MainPage.Navigation.ModalStack.Any(p => p is NavigationPage navPage && navPage.CurrentPage is LoginPasswordlessPage))
|
// App.Current can be null if the app is killed
|
||||||
|
if (App.Current != null && App.Current.MainPage.Navigation.ModalStack.Any(p => p is NavigationPage navPage && navPage.CurrentPage is LoginPasswordlessPage))
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user