diff options
author | Rider Linden <rider@lindenlab.com> | 2020-05-20 15:37:21 -0700 |
---|---|---|
committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2020-06-30 23:13:04 +0300 |
commit | e2dd15397c709a3a37e70942d40373f5476a434b (patch) | |
tree | 983ef724d7c1dbbf3bd9cdc5bcac080fb9cef3a7 /indra | |
parent | 4a7fd0117a43dca9e30c58c6417ebdf6862561f6 (diff) |
SL-9756: Take the "session_id" from the offline message that was passed.
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llimprocessing.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llimprocessing.cpp b/indra/newview/llimprocessing.cpp index 6da7bbe263..b534fc0b4a 100644 --- a/indra/newview/llimprocessing.cpp +++ b/indra/newview/llimprocessing.cpp @@ -1608,7 +1608,7 @@ void LLIMProcessing::requestOfflineMessagesCoro(std::string url) message_data["to_agent_id"].asUUID(), IM_OFFLINE, (EInstantMessage)message_data["dialog"].asInteger(), - LLUUID::null, // session id, since there is none we can only use frienship/group invite caps + message_data["session_id"].asUUID(), message_data["timestamp"].asInteger(), message_data["from_agent_name"].asString(), message_data["message"].asString(), |