Fix invalid HTML escape

This commit is contained in:
Guillaume Gomez 2017-11-28 12:05:53 +01:00
parent 7745a7a817
commit 35f5be6646
4 changed files with 31 additions and 6 deletions

View file

@ -81,6 +81,7 @@ fn small_url_encode(s: &str) -> String {
.replace(";", "%3B")
.replace("[", "%5B")
.replace("]", "%5D")
.replace("\"", "%22")
}
impl FileEntry {