From ac46a6f3c1a7d8939546fc33c5141191e4cfec6f Mon Sep 17 00:00:00 2001 From: Outfluencer <48880402+Outfluencer@users.noreply.github.com> Date: Sat, 24 Aug 2024 12:27:05 +0200 Subject: [PATCH] Update InitialHandler.java --- .../main/java/net/md_5/bungee/connection/InitialHandler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxy/src/main/java/net/md_5/bungee/connection/InitialHandler.java b/proxy/src/main/java/net/md_5/bungee/connection/InitialHandler.java index 2a07f44018..3bbf688b54 100644 --- a/proxy/src/main/java/net/md_5/bungee/connection/InitialHandler.java +++ b/proxy/src/main/java/net/md_5/bungee/connection/InitialHandler.java @@ -718,7 +718,7 @@ public void handle(CookieResponse cookieResponse) } // if there is no userCon we can't have a connection to a backend server that could have requested this cookie - // witch means that this cookie is invalid as the proxy also has not requested it + // which means that this cookie is invalid as the proxy also has not requested it Preconditions.checkState( userCon != null, "not requested cookie received" ); }