1
0
mirror of https://github.com/JKorf/CryptoExchange.Net.git synced 2026-08-20 04:42:57 +00:00

added lock for events, fixed some forgotten configureawait(false) calls

This commit is contained in:
Jan Korf
2018-12-28 21:44:38 +01:00
parent 36169d08a3
commit b423d4b6c7
2 changed files with 50 additions and 29 deletions
@@ -41,7 +41,7 @@ namespace CryptoExchange.Net.Sockets
/// <returns></returns>
public async Task Close()
{
await subscription.Close();
await subscription.Close().ConfigureAwait(false);
}
}
}