From 2783f2d1155a5bbb89f10f0e7add2301649ed5ec Mon Sep 17 00:00:00 2001 From: sta Date: Mon, 7 Oct 2024 20:45:37 +0900 Subject: [PATCH] [Modify] Polish it --- websocket-sharp/Net/AuthenticationResponse.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/websocket-sharp/Net/AuthenticationResponse.cs b/websocket-sharp/Net/AuthenticationResponse.cs index 0cb02f91..23647b04 100644 --- a/websocket-sharp/Net/AuthenticationResponse.cs +++ b/websocket-sharp/Net/AuthenticationResponse.cs @@ -420,7 +420,10 @@ namespace WebSocketSharp.Net var nc = _parameters["nc"]; buff.AppendFormat ( - ", qop={0}, cnonce=\"{1}\", nc={2}", qop, cnonce, nc + ", qop={0}, cnonce=\"{1}\", nc={2}", + qop, + cnonce, + nc ); }