summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--application.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/application.rb b/application.rb
index 5fd664b..6a7e4c6 100644
--- a/application.rb
+++ b/application.rb
@@ -22,7 +22,10 @@ get %r{/(.+)} do |inchi| # catches all remaining get requests
OpenTox::Compound.new(:inchi => inchi).sdf
when "image/gif"
response['Content-Type'] = "image/gif"
- OpenTox::Compound.new(:inchi => inchi).image
+ OpenTox::Compound.new(:inchi => inchi).gif
+ when "image/png"
+ response['Content-Type'] = "image/png"
+ OpenTox::Compound.new(:inchi => inchi).png
when "text/plain"
response['Content-Type'] = "text/plain"
uri = File.join CACTUS_URI,inchi,"names"