mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 06:04:57 +00:00
JsonParser: "" is an empty string, not a null value
This commit is contained in:
parent
f6fe56d011
commit
1ac963b5c8
2 changed files with 9 additions and 1 deletions
|
@ -101,7 +101,7 @@ String JsonParser::consume_quoted_string()
|
|||
consume_specific('"');
|
||||
|
||||
if (buffer.is_empty())
|
||||
return {};
|
||||
return String::empty();
|
||||
|
||||
auto& last_string_starting_with_character = m_last_string_starting_with_character[(int)buffer.first()];
|
||||
if (last_string_starting_with_character.length() == buffer.size()) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue