mirror of
https://github.com/ONLYOFFICE/core.git
synced 2025-04-18 14:04:06 +03:00
Fix bug #72586
This commit is contained in:
parent
34627ff1c5
commit
3af549a158
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user