Rename Reconnect to ReconnectAsync

This commit is contained in:
barelyprofessional
2026-02-11 22:06:00 -06:00
parent 259d5c339b
commit bdb882795f

View File

@@ -64,7 +64,7 @@ public class ChatClient
await _wsClient.Stop(WebSocketCloseStatus.NormalClosure, "Closing websocket"); await _wsClient.Stop(WebSocketCloseStatus.NormalClosure, "Closing websocket");
} }
public async Task Reconnect() public async Task ReconnectAsync()
{ {
if (_wsClient == null) throw new WebSocketNotInitializedException(); if (_wsClient == null) throw new WebSocketNotInitializedException();
await _wsClient.Reconnect(); await _wsClient.Reconnect();