From e737466184102efeb8ee5f963a85b26fefe22a96 Mon Sep 17 00:00:00 2001 From: Lars Brubaker Date: Tue, 10 Oct 2017 16:48:27 -0700 Subject: [PATCH] Call the event correctly --- PrinterCommunication/PrinterConnection.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PrinterCommunication/PrinterConnection.cs b/PrinterCommunication/PrinterConnection.cs index 04751125e..8ce918833 100644 --- a/PrinterCommunication/PrinterConnection.cs +++ b/PrinterCommunication/PrinterConnection.cs @@ -1308,7 +1308,7 @@ namespace MatterHackers.MatterControl.PrinterCommunication FoundStringEventArgs foundStringEventArgs = e as FoundStringEventArgs; if (foundStringEventArgs != null) { - ErrorReported?.Invoke(null, foundStringEventArgs); + ErrorReported.CallEvents(null, foundStringEventArgs); } } }