Fix for quoted empty string.
This commit is contained in:
parent
367e50799e
commit
714e771fba
1 changed files with 3 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue