Browse Source

Change MIME type for PNG images to image/png

This is the official MIME type assigned by the IANA (see http://www.iana.org/assignments/media-types/image/png).
adaptive-webui-19844
Tillmann Karras 13 years ago
parent
commit
2f0e15bc25
  1. 2
      src/webui/httpresponsegenerator.cpp

2
src/webui/httpresponsegenerator.cpp

@ -60,7 +60,7 @@ void HttpResponseGenerator::setContentTypeByExt(const QString& ext) { @@ -60,7 +60,7 @@ void HttpResponseGenerator::setContentTypeByExt(const QString& ext) {
return;
}
if (ext == "png") {
setContentType("image/x-png");
setContentType("image/png");
return;
}
}

Loading…
Cancel
Save