This commit is contained in:
Doug Hoyte
2023-09-08 08:02:22 -04:00
parent 0ade447926
commit b5953c2da7
6 changed files with 15 additions and 8 deletions

View File

@ -290,6 +290,9 @@ HTTPResponse WebServer::generateReadResponse(lmdb::txn &txn, Decompressor &decom
rawBody = std::string(oddbeanStatic__oddbean_svg());
contentType = "image/svg+xml";
}
} else if (u.path[0] == "favicon.ico") {
rawBody = std::string(oddbeanStatic__favicon_ico());
contentType = "image/x-icon";
}