Skip to content
Snippets Groups Projects
Commit 860962d3 authored by Richard Nelson's avatar Richard Nelson
Browse files

EXP-1063 FIX Destination Guide link in side panel does not open to destination...

EXP-1063 FIX Destination Guide link in side panel does not open to destination guide specific search window
fixed param->LLSD serialization to not introduce empty strings
parent 09394d3a
No related branches found
No related tags found
No related merge requests found
...@@ -159,6 +159,11 @@ LLSD* LLParamSDParser::getSDWriteNode(const parser_t::name_stack_t& name_stack) ...@@ -159,6 +159,11 @@ LLSD* LLParamSDParser::getSDWriteNode(const parser_t::name_stack_t& name_stack)
it != name_stack.end(); it != name_stack.end();
++it) ++it)
{ {
if (it->first.empty())
{
continue;
}
bool new_array_entry = false; bool new_array_entry = false;
if (prev_it == mNameStack.end()) if (prev_it == mNameStack.end())
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment