From aff118c50111bb5905f73d9d97998cc7f1c7cf1a Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 24 May 2016 19:06:19 -0400 Subject: [PATCH] null check on InvokeCompleted --- src/App/Controls/ExtendedEntry.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App/Controls/ExtendedEntry.cs b/src/App/Controls/ExtendedEntry.cs index b192399c4..a6e1c0bb9 100644 --- a/src/App/Controls/ExtendedEntry.cs +++ b/src/App/Controls/ExtendedEntry.cs @@ -57,7 +57,7 @@ namespace Bit.App.Controls public void InvokeCompleted() { - Completed.Invoke(this, null); + Completed?.Invoke(this, null); } } }