1
0
mirror of https://github.com/JKorf/CryptoExchange.Net synced 2025-06-08 00:16:27 +00:00

Fix for not set exception handler

This commit is contained in:
Jan Korf 2019-03-25 11:19:28 +01:00
parent 3e8871fc76
commit a1ae8304cf

View File

@ -148,7 +148,7 @@ namespace CryptoExchange.Net.Sockets
public void InvokeExceptionHandler(Exception e) public void InvokeExceptionHandler(Exception e)
{ {
Exception(e); Exception?.Invoke(e);
} }
public async Task Close() public async Task Close()