mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-30 04:37:50 +02:00
Move MIME type detection to util/HTTP.cpp
This commit is contained in:
parent
17cd149e7f
commit
221e350228
3 changed files with 19 additions and 7 deletions
|
@ -152,13 +152,7 @@ void HTTPConnection::HandleRequest()
|
|||
str = i2p::util::http::preprocessContent(str, address.parent_path().string());
|
||||
m_Reply = i2p::util::http::Response(200, str);
|
||||
|
||||
// TODO: get rid of this hack, actually determine the MIME type
|
||||
if(address_str.substr(address_str.find_last_of(".")) == ".css")
|
||||
m_Reply.setHeader("Content-Type", "text/css");
|
||||
else if(address_str.substr(address_str.find_last_of(".")) == ".js")
|
||||
m_Reply.setHeader("Content-Type", "text/javascript");
|
||||
else
|
||||
m_Reply.setHeader("Content-Type", "text/html");
|
||||
m_Reply.setHeader("Content-Type", i2p::util::http::getMimeType(address_str));
|
||||
SendReply();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue