Correct Content-Type header for gif images

This commit is contained in:
Denis Ryabov 2014-03-13 15:16:57 +04:00
parent 6d128d1ac4
commit 3d9c89889f

View File

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