diff options
Diffstat (limited to 'base/json/json_writer.cc')
-rw-r--r-- | base/json/json_writer.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/json/json_writer.cc b/base/json/json_writer.cc index 133b625..ffdad76 100644 --- a/base/json/json_writer.cc +++ b/base/json/json_writer.cc @@ -157,7 +157,7 @@ void JSONWriter::BuildJSONString(const Value* const node, } Value* value = NULL; - bool result = dict->Get(*key_itr, &value); + bool result = dict->GetWithoutPathExpansion(*key_itr, &value); DCHECK(result); if (pretty_print_) |