change robust assets contenttype when answer is xml

This commit is contained in:
UbitUmarov 2022-08-23 21:52:51 +01:00
parent 184a2eaf75
commit 38cb0fd6cf
1 changed files with 2 additions and 1 deletions

View File

@ -136,7 +136,8 @@ namespace OpenSim.Server.Handlers.Asset
result = ServerUtils.SerializeResult(xs, asset);
httpResponse.StatusCode = (int)HttpStatusCode.OK;
httpResponse.ContentType = SLUtil.SLAssetTypeToContentType(asset.Type);
//httpResponse.ContentType = SLUtil.SLAssetTypeToContentType(asset.Type);
httpResponse.ContentType = "text/xml";
}
else
{