diff options
-rw-r--r-- | indra/newview/llfloaterpathfindinglinksets.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/indra/newview/llfloaterpathfindinglinksets.cpp b/indra/newview/llfloaterpathfindinglinksets.cpp index c70430e7f7..b444ed6df5 100644 --- a/indra/newview/llfloaterpathfindinglinksets.cpp +++ b/indra/newview/llfloaterpathfindinglinksets.cpp @@ -1094,8 +1094,12 @@ void LLFloaterPathfindingLinksets::applyEditFields() itemData["D"] = d;
}
- editData[uuid.asString()] = itemData;
+ if (!itemData.isUndefined())
+ {
+ editData[uuid.asString()] = itemData;
+ }
}
+
if (editData.isUndefined())
{
llwarns << "No PUT data specified" << llendl;
|