diff options
author | Leyla Farazha <leyla@lindenlab.com> | 2010-05-25 14:22:56 -0700 |
---|---|---|
committer | Leyla Farazha <leyla@lindenlab.com> | 2010-05-25 14:22:56 -0700 |
commit | 16e3d7ebf56731c5e9ff40b92eff427316c65103 (patch) | |
tree | 62552614f1314f4d3bb96ef133b9659bdae89e16 /indra/newview/llnearbychat.cpp | |
parent | 1bd6061ff57a46293d962adf8ffa5326f87a3566 (diff) | |
parent | a91d10dc1806d1931c7f1361bfcf70df59d982d5 (diff) |
Merge
Diffstat (limited to 'indra/newview/llnearbychat.cpp')
-rw-r--r-- | indra/newview/llnearbychat.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/indra/newview/llnearbychat.cpp b/indra/newview/llnearbychat.cpp index f1c13de8bb..74ede67c97 100644 --- a/indra/newview/llnearbychat.cpp +++ b/indra/newview/llnearbychat.cpp @@ -301,8 +301,12 @@ void LLNearbyChat::loadHistory() const LLSD& msg = *it; std::string from = msg[IM_FROM]; - LLUUID from_id = LLUUID::null; - if (msg[IM_FROM_ID].isUndefined()) + LLUUID from_id; + if (msg[IM_FROM_ID].isDefined()) + { + from_id = msg[IM_FROM_ID].asUUID(); + } + else { gCacheName->getUUID(from, from_id); } |