Reamer commented on code in PR #4632:
URL: https://github.com/apache/zeppelin/pull/4632#discussion_r1258428457


##########
zeppelin-server/src/main/java/org/apache/zeppelin/service/NotebookService.java:
##########
@@ -236,6 +237,12 @@ String normalizeNotePath(String notePath) throws 
IOException {
     }
 
     notePath = notePath.replace("\r", " ").replace("\n", " ");
+
+    notePath = URLDecoder.decode(notePath, "UTF-8");

Review Comment:
   ```suggestion
       notePath = URLDecoder.decode(notePath, 
StandardCharsets.UTF_8.toString());
   ```



-- 
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: reviews-unsubscr...@zeppelin.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to