diff options
author | Rider Linden <rider@lindenlab.com> | 2020-05-20 15:37:21 -0700 |
---|---|---|
committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2020-06-30 02:38:53 +0300 |
commit | 25e6dc4adb332cd65ea42bb3cea2160a9b8c393e (patch) | |
tree | cf5805498e22614df8f1dc7560daa4761f251d97 /indra/newview | |
parent | ebfa7a7992517278c3e095a0bd53ab81bfcdb847 (diff) |
SL-9756: Take the "session_id" from the offline message that was passed.
Diffstat (limited to 'indra/newview')
-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(), |