mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
Fix bug #72586
This commit is contained in:
@ -80,7 +80,7 @@ HRESULT CEpubFile::Convert(const std::wstring& sInputFile, const std::wstring& s
|
||||
if (nContent != std::wstring::npos)
|
||||
{
|
||||
nContent += 11;
|
||||
sContent = sFileContent.substr(nContent, sFileContent.find(L'\"', nContent) - nContent);
|
||||
sContent = sFileContent.substr(nContent, sFileContent.find_first_of(L"\"'", nContent) - nContent);
|
||||
}
|
||||
|
||||
std::wstring sContentPath;
|
||||
|
||||
Reference in New Issue
Block a user