Fix invalid HTML escape
This commit is contained in:
parent
7745a7a817
commit
35f5be6646
4 changed files with 31 additions and 6 deletions
|
|
@ -81,6 +81,7 @@ fn small_url_encode(s: &str) -> String {
|
|||
.replace(";", "%3B")
|
||||
.replace("[", "%5B")
|
||||
.replace("]", "%5D")
|
||||
.replace("\"", "%22")
|
||||
}
|
||||
|
||||
impl FileEntry {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue