Skip to content

Commit ae2c1d9

Browse files
committed
add pct to encode
1 parent c4e8ffb commit ae2c1d9

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

analysis/src/Hover.ml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ let encodeURIComponent text =
2929
| '=' -> Buffer.add_string buf "%3D"
3030
| '?' -> Buffer.add_string buf "%3F"
3131
| '@' -> Buffer.add_string buf "%40"
32+
| '%' -> Buffer.add_string buf "%25"
3233
| c -> Buffer.add_char buf c);
3334
loop (i + 1))
3435
in

0 commit comments

Comments
 (0)