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

This commit is contained in:
Justin Clark-Casey (justincc)
2011-12-07 22:42:05 +00:00
parent 2b4de8f881
commit dae58e0937

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"] ;
}