Update ManagerConnection.cs
I was getting a PlatformNotSupported exception with .Net Core 3.1 saying "Operation is not supported on this platform". This code change fixes that and maintains functionality.
This commit is contained in:
parent
b9f3ec64d8
commit
26b8e610f9
|
@ -2049,7 +2049,7 @@ namespace AsterNET.Manager
|
|||
{
|
||||
if (enableEvents && internalEvent != null)
|
||||
if (UseASyncEvents)
|
||||
internalEvent.BeginInvoke(this, e, new AsyncCallback(eventComplete), null);
|
||||
Task.Run(() => internalEvent.Invoke(this, e)).ContinueWith(eventComplete);
|
||||
else
|
||||
internalEvent.Invoke(this, e);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue