Browse Source

Content-Type for .mp3 and .ogg files (used in Calm theme)

miguelfreitas
Denis Ryabov 11 years ago
parent
commit
21b0daf7f8
  1. 4
      src/bitcoinrpc.cpp

4
src/bitcoinrpc.cpp

@ -1014,6 +1014,10 @@ void ServiceConnection(AcceptedConnection *conn) @@ -1014,6 +1014,10 @@ void ServiceConnection(AcceptedConnection *conn)
if( strURI.find(".jpg") != std::string::npos ||
strURI.find(".jpeg") != std::string::npos )
contentType = "image/jpeg";
if( strURI.find(".mp3") != std::string::npos )
contentType = "audio/mpeg";
if( strURI.find(".ogg") != std::string::npos )
contentType = "audio/ogg";
conn->stream() << HTTPReply(HTTP_OK, str, false, contentType) << std::flush;
} else {
printf("ServiceConnection: file %s not found\n", fname.c_str());

Loading…
Cancel
Save