Skip to content

Commit

Permalink
Исправление экранирования пробела
Browse files Browse the repository at this point in the history
  • Loading branch information
nixel2007 committed Aug 8, 2021
1 parent 3cb6429 commit 5bd46dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/github/_1c_syntax/utils/Absolute.java
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public static Path path(File file) {

private static String encodePath(String path) {
return path
.replace(" ", "%25")
.replace(" ", "%20")
.replace("[", "%91")
.replace("]", "%93")
;
Expand Down

0 comments on commit 5bd46dd

Please sign in to comment.