mirror of
https://github.com/bitwarden/android.git
synced 2025-03-14 02:08:48 +03:00
[SG-870] Add null check on notification received (#2221)
This commit is contained in:
parent
7785b2dbf9
commit
f4b4cfc9de
1 changed files with 2 additions and 1 deletions
|
@ -141,7 +141,8 @@ namespace Bit.App.Services
|
|||
}
|
||||
|
||||
// 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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue