1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-05 23:53:33 +00:00

null check on InvokeCompleted

This commit is contained in:
Kyle Spearrin
2016-05-24 19:06:19 -04:00
parent 6f286ded4f
commit aff118c501

View File

@@ -57,7 +57,7 @@ namespace Bit.App.Controls
public void InvokeCompleted()
{
Completed.Invoke(this, null);
Completed?.Invoke(this, null);
}
}
}