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

0.6.3-post-fixes
Mike Mazur 2009-02-16 02:28:24 +00:00
parent f8d51e6949
commit 4c6b7234de
1 changed files with 1 additions and 1 deletions

View File

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