mirror of
https://github.com/bitwarden/mobile
synced 2025-12-05 23:53:33 +00:00
[SG-870] Add null check on notification received (#2221)
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user