summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRider Linden <rider@lindenlab.com>2020-05-20 15:37:21 -0700
committerAndrey Lihatskiy <alihatskiy@productengine.com>2020-06-30 19:07:45 +0300
commit45e956d0fb7adc7f26e1ff6b949eda86f3641bf0 (patch)
tree0ad958368e70805ec24352c266d74acf3c0badbb
parent72ec01bbc178293a42f1e2c8536cc11aea1b9381 (diff)
SL-9756: Take the "session_id" from the offline message that was passed.
-rw-r--r--indra/newview/llimprocessing.cpp2
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(),