diff options
author | cel <cel@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519> | 2018-09-24 19:36:47 -1000 |
---|---|---|
committer | cel <cel@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519> | 2018-09-24 19:37:18 -1000 |
commit | 47442aa20e3a4738708249618caf3c32fbea07bb (patch) | |
tree | bdbdc2b50a8d554c04ff913ec9f10f1c940b1e58 | |
parent | e9e878093f895aedaf1982f94f0f75f0fd113d77 (diff) | |
download | patchfoo-47442aa20e3a4738708249618caf3c32fbea07bb.tar.gz patchfoo-47442aa20e3a4738708249618caf3c32fbea07bb.zip |
Handle unencoded web links
-rw-r--r-- | lib/serve.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/serve.js b/lib/serve.js index 951daea..f825ed7 100644 --- a/lib/serve.js +++ b/lib/serve.js @@ -2873,7 +2873,9 @@ Serve.prototype.zip = function (url) { Serve.prototype.web = function (url) { var self = this - var id = decodeURIComponent(url.substr(1)) + var id = url.substr(1) + try { id = decodeURIComponent(id) } + catch(e) {} var components = url.split('/') if (components[0] === '') components.shift() |