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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to