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

iar_mods
Justin Clark-Casey (justincc) 2011-12-07 22:42:05 +00:00
parent 2b4de8f881
commit dae58e0937
1 changed files with 1 additions and 1 deletions

View File

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