Remove warning in admin_save_oar xmlrpc method where noassets == true was comparing against an object rather than a string
parent
3d94984eee
commit
1e83800d32
|
@ -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"] ;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue