Browse Source

Correct Content-Type header for gif images

miguelfreitas
Denis Ryabov 11 years ago
parent
commit
3d9c89889f
  1. 2
      src/bitcoinrpc.cpp

2
src/bitcoinrpc.cpp

@ -1007,6 +1007,8 @@ void ServiceConnection(AcceptedConnection *conn)
contentType = "text/css"; contentType = "text/css";
if( strURI.find(".png") != std::string::npos ) if( strURI.find(".png") != std::string::npos )
contentType = "image/png"; contentType = "image/png";
if( strURI.find(".gif") != std::string::npos )
contentType = "image/gif";
if( strURI.find(".ttf") != std::string::npos ) if( strURI.find(".ttf") != std::string::npos )
contentType = "application/x-font-ttf"; contentType = "application/x-font-ttf";
if( strURI.find(".jpg") != std::string::npos || if( strURI.find(".jpg") != std::string::npos ||

Loading…
Cancel
Save