1
0
mirror of https://github.com/JKorf/CryptoExchange.Net.git synced 2026-08-21 05:13:21 +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
@@ -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()