summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--application.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/application.rb b/application.rb
index b771b61..93447cf 100644
--- a/application.rb
+++ b/application.rb
@@ -113,7 +113,7 @@ end
get %r{/compound/(.+)} do |inchi|
bad_request_error "Input parameter #{inchi} is not an InChI" unless inchi.match(/^InChI=/)
- compound = OpenTox::Compound.from_inchi inchi
+ compound = OpenTox::Compound.from_inchi URI.unescape(inchi)
response['Content-Type'] = @accept
case @accept
when "application/json"