From bdb882795fbe606098e45c46b96db527531a5567 Mon Sep 17 00:00:00 2001 From: barelyprofessional <150058423+barelyprofessional@users.noreply.github.com> Date: Wed, 11 Feb 2026 22:06:00 -0600 Subject: [PATCH] Rename Reconnect to ReconnectAsync --- KfChatDotNetWsClient/ChatClient.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/KfChatDotNetWsClient/ChatClient.cs b/KfChatDotNetWsClient/ChatClient.cs index 30ec421..1aaa272 100644 --- a/KfChatDotNetWsClient/ChatClient.cs +++ b/KfChatDotNetWsClient/ChatClient.cs @@ -64,7 +64,7 @@ public class ChatClient await _wsClient.Stop(WebSocketCloseStatus.NormalClosure, "Closing websocket"); } - public async Task Reconnect() + public async Task ReconnectAsync() { if (_wsClient == null) throw new WebSocketNotInitializedException(); await _wsClient.Reconnect();