1
0
mirror of https://github.com/JKorf/CryptoExchange.Net.git synced 2026-08-11 16:32:57 +00:00

Fix for websocket queries which don't expects response getting stuck in subscribing state

This commit is contained in:
Jkorf
2026-02-17 14:35:02 +01:00
parent 297eee0e1f
commit 419e01d009
2 changed files with 6 additions and 2 deletions
@@ -170,6 +170,6 @@ namespace CryptoExchange.Net.Objects.Sockets
}
/// <inheritdoc />
public override string ToString() => base.ToString().TrimEnd('-') + Data?.ToString();
public override string ToString() => base.ToString().TrimEnd(' ', '-') + " - " + Data?.ToString();
}
}