Skip to content

Commit

Permalink
Fix linux compile
Browse files Browse the repository at this point in the history
  • Loading branch information
LiruMouse committed Mar 1, 2020
1 parent b7086a9 commit ffa32f8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions indra/newview/llimprocessing.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1971,15 +1971,17 @@ void LLIMProcessing::requestOfflineMessagesCoro(const LLCoroResponder& responder
from_group = message_data["from_group"].asString() == "Y";
}

auto agentName = message_data["from_agent_name"].asString();
auto message = message_data["message"].asString();
LLIMProcessing::processNewMessage(message_data["from_agent_id"].asUUID(),
from_group,
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["timestamp"].asInteger(),
message_data["from_agent_name"].asString(),
message_data["message"].asString(),
agentName,
message,
parent_estate_id,
message_data["region_id"].asUUID(),
position,
Expand Down

0 comments on commit ffa32f8

Please sign in to comment.