Remove warning in admin_save_oar xmlrpc method where noassets == true was comparing against an object rather than a string

0.7.2-post-fixes
Justin Clark-Casey (justincc) 2011-12-07 22:42:05 +00:00
parent 3d94984eee
commit 1e83800d32
1 changed files with 1 additions and 1 deletions

View File

@ -1464,7 +1464,7 @@ namespace OpenSim.ApplicationPlugins.RemoteController
options["profile"] = (string)requestData["profile"];
}
if (requestData["noassets"] == "true")
if (requestData["noassets"].ToString() == "true")
{
options["noassets"] = (string)requestData["noassets"] ;
}