1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-09-27 03:52:57 +02: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);
}
}
}