Fix for quoted empty string.

This commit is contained in:
Olga Khlopkova 2020-06-18 13:33:29 +03:00
parent 367e50799e
commit 714e771fba

View file

@ -143,9 +143,10 @@ inline std::string unquote_text(const std::string & text)
}
if (res.size() > 2 && res.front() == quote && res.back() == quote && (quotes_count - 2) % 2 == 0)
{
return res.substr(1, res.size() - 2);
}
if (res == "\"")
return {};
return res;
}