We need to return a zero-length byte array from the Handle() routine.

This commit is contained in:
Mike Mazur
2009-02-16 02:28:24 +00:00
parent f8d51e6949
commit 4c6b7234de

View File

@@ -191,7 +191,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.OpenSim
httpResponse.StatusCode = (int) HttpStatusCode.BadRequest;
}
return null;
return new byte[] {};
}
}
}