1
0
mirror of https://github.com/bitwarden/mobile synced 2025-01-15 02:16:55 +01: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);
}
}
}