From 17dfa0bea77c39f1ce12baf7336613d7a4b724b5 Mon Sep 17 00:00:00 2001 From: sta Date: Sun, 6 Jan 2019 17:17:54 +0900 Subject: [PATCH] [Modify] Replace it --- websocket-sharp/Net/HttpUtility.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/websocket-sharp/Net/HttpUtility.cs b/websocket-sharp/Net/HttpUtility.cs index 8d1fd4d3..7458eecd 100644 --- a/websocket-sharp/Net/HttpUtility.cs +++ b/websocket-sharp/Net/HttpUtility.cs @@ -219,7 +219,7 @@ namespace WebSocketSharp.Net continue; } - if (!Char.IsDigit (c)) { + if (!isNumeric (c)) { state = 2; continue; }