Fix build break

This commit is contained in:
Melanie
2019-10-06 23:57:47 +01:00
parent eb55f7f2bc
commit be34b8e79d
4 changed files with 13 additions and 4 deletions

View File

@@ -70,6 +70,7 @@ namespace OpenSim.Services.HypergridService
private static bool m_ForwardOfflineGroupMessages;
private static bool m_InGatekeeper;
private string m_messageKey;
public HGInstantMessageService(IConfigSource config)
: this(config, null)
@@ -322,7 +323,7 @@ namespace OpenSim.Services.HypergridService
bool ForwardIMToGrid(string url, GridInstantMessage im, UUID toAgentID, bool foreigner)
{
if (InstantMessageServiceConnector.SendInstantMessage(url, im))
if (InstantMessageServiceConnector.SendInstantMessage(url, im, m_messageKey))
{
// IM delivery successful, so store the Agent's location in our local cache.
lock (m_UserLocationMap)