mirror of
https://github.com/bitwarden/mobile.git
synced 2024-11-22 11:35:21 +01:00
null coalesce
This commit is contained in:
parent
ece35b96db
commit
db42b6a3a5
@ -33,7 +33,7 @@ namespace Bit.iOS.Services
|
||||
|
||||
public void Toast(string text, bool longDuration = false)
|
||||
{
|
||||
if(_toast != null && !_toast.Dismissed)
|
||||
if(!_toast?.Dismissed ?? false)
|
||||
{
|
||||
_toast.Dismiss(false);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user