mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 01:06:30 +08:00
Reintroduce transactionID to the parameter list for SendInstantMessage.
It is required by group IM and also for a proper implementation of item give, group notice attachments and offline IM.
This commit is contained in:
@@ -162,7 +162,7 @@ namespace OpenSim.Region.Environment.Modules.Avatar.InstantMessage
|
||||
{
|
||||
user.ControllingClient.SendInstantMessage(fromAgentID, message,
|
||||
toAgentID, fromAgentName, dialog,
|
||||
timestamp, fromGroup, binaryBucket);
|
||||
timestamp, UUID.Zero, fromGroup, binaryBucket);
|
||||
// Message sent
|
||||
return;
|
||||
}
|
||||
@@ -179,7 +179,7 @@ namespace OpenSim.Region.Environment.Modules.Avatar.InstantMessage
|
||||
|
||||
user.ControllingClient.SendInstantMessage(fromAgentID, message,
|
||||
toAgentID, fromAgentName, dialog,
|
||||
timestamp, fromGroup, binaryBucket);
|
||||
timestamp, UUID.Zero, fromGroup, binaryBucket);
|
||||
// Message sent
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -136,7 +136,7 @@ namespace OpenSim.Region.Environment.Modules.Avatar.Inventory.Transfer
|
||||
|
||||
user.ControllingClient.SendInstantMessage(
|
||||
fromAgentID, message, toAgentID, fromAgentName,
|
||||
dialog, timestamp, false, binaryBucket);
|
||||
dialog, timestamp, UUID.Zero, false, binaryBucket);
|
||||
|
||||
return;
|
||||
}
|
||||
@@ -168,7 +168,7 @@ namespace OpenSim.Region.Environment.Modules.Avatar.Inventory.Transfer
|
||||
{
|
||||
user.ControllingClient.SendInstantMessage(
|
||||
fromAgentID, message, toAgentID, fromAgentName,
|
||||
dialog, timestamp, false, binaryBucket);
|
||||
dialog, timestamp, UUID.Zero, false, binaryBucket);
|
||||
|
||||
if (m_pendingOffers.ContainsKey(imSessionID))
|
||||
{
|
||||
@@ -214,7 +214,7 @@ namespace OpenSim.Region.Environment.Modules.Avatar.Inventory.Transfer
|
||||
{
|
||||
user.ControllingClient.SendInstantMessage(
|
||||
fromAgentID, message, toAgentID, fromAgentName,
|
||||
dialog, timestamp, false, binaryBucket);
|
||||
dialog, timestamp, UUID.Zero, false, binaryBucket);
|
||||
|
||||
if (m_pendingOffers.ContainsKey(imSessionID))
|
||||
{
|
||||
|
||||
@@ -476,7 +476,7 @@ namespace OpenSim.Region.Environment.Modules.World.NPC
|
||||
|
||||
}
|
||||
|
||||
public void SendInstantMessage(UUID fromAgent, string message, UUID toAgent, string fromName, byte dialog, uint timeStamp, bool fromGroup, byte[] binaryBucket)
|
||||
public void SendInstantMessage(UUID fromAgent, string message, UUID toAgent, string fromName, byte dialog, uint timeStamp, UUID transationID, bool fromGroup, byte[] binaryBucket)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user