mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 22:26:09 +08:00
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:
@@ -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"] ;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user