Fix the inventory transfer module to not cause duplicated text IMs
parent
7844872067
commit
4db60a5a40
|
@ -473,10 +473,13 @@ namespace OpenSim.Region.CoreModules.Avatar.Inventory.Transfer
|
||||||
user.ControllingClient.SendBulkUpdateInventory(item);
|
user.ControllingClient.SendBulkUpdateInventory(item);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
user.ControllingClient.SendInstantMessage(im);
|
||||||
}
|
}
|
||||||
|
else if (im.dialog == (byte) InstantMessageDialog.InventoryAccepted ||
|
||||||
// Just forward to the client
|
im.dialog == (byte) InstantMessageDialog.InventoryDeclined)
|
||||||
|
{
|
||||||
user.ControllingClient.SendInstantMessage(im);
|
user.ControllingClient.SendInstantMessage(im);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue