Fix signatures

This commit is contained in:
Oleg Korshul
2021-09-13 18:20:25 +03:00
parent ca8b6d9c5c
commit 64bb70bbef

View File

@ -337,7 +337,7 @@ public:
std::wstring sFile = *i;
std::wstring sContentType = L"application/xml";
std::map<std::wstring, std::wstring>::iterator _find = m_content_types.find(sFile);
std::map<std::wstring, std::wstring>::iterator _find = m_content_types.find(L"/" + sFile);
if (_find != m_content_types.end())
{
sContentType = _find->second;