mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 06:06:06 +08:00
Fixed bug with adding sims to DB4o based grid interface
This commit is contained in:
@@ -41,7 +41,14 @@ namespace OpenGrid.Framework.Data.DB4o
|
||||
|
||||
public DataResponse AddProfile(SimProfileData profile)
|
||||
{
|
||||
return DataResponse.RESPONSE_OK;
|
||||
if (manager.AddRow(profile))
|
||||
{
|
||||
return DataResponse.RESPONSE_OK;
|
||||
}
|
||||
else
|
||||
{
|
||||
return DataResponse.RESPONSE_ERROR;
|
||||
}
|
||||
}
|
||||
|
||||
public bool AuthenticateSim(LLUUID uuid, ulong handle, string key) {
|
||||
|
||||
Reference in New Issue
Block a user