diff --git a/OpenSim/Region/ClientStack/LindenUDP/J2KImage.cs b/OpenSim/Region/ClientStack/LindenUDP/J2KImage.cs index a88fd26369..947931e788 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/J2KImage.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/J2KImage.cs @@ -134,8 +134,12 @@ namespace OpenSim.Region.ClientStack.LindenUDP protected void AssetReceived(string id, Object sender, AssetBase asset) { + UUID assetID = UUID.Zero; if (asset != null) - AssetDataCallback(asset.FullID, asset); + assetID = asset.FullID; + + AssetDataCallback(assetID, asset); + } private int GetPacketForBytePosition(int bytePosition)