MajaChen commented on code in PR #13617: URL: https://github.com/apache/dubbo/pull/13617#discussion_r1448331987
########## dubbo-rpc/dubbo-rpc-rest/src/main/java/org/apache/dubbo/rpc/protocol/rest/request/RequestFacade.java: ########## @@ -56,6 +58,17 @@ protected void initHeaders() {} protected void initParameters() { String requestURI = getRequestURI(); + String decodedRequestURI = requestURI; + try { + decodedRequestURI = URLDecoder.decode(decodedRequestURI, "UTF-8"); + } catch (UnsupportedEncodingException e) { + // do nothing + } Review Comment: I've made an adjustment according to your opinon, please take a look again, take your time -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org For additional commands, e-mail: notifications-h...@dubbo.apache.org