* Stop a non WebException in an XMLRPC request from bringing down the whole sim

0.6.0-stable
Justin Clarke Casey 2008-11-04 20:47:59 +00:00
parent 03c402842a
commit c4fbb6453c
1 changed files with 1 additions and 1 deletions

View File

@ -677,7 +677,7 @@ namespace OpenSim.Region.Environment.Modules.Scripting.XMLRPC
}
}
}
catch (WebException we)
catch (Exception we)
{
sdata = we.Message;
m_log.Warn("[SendRemoteDataRequest]: Request failed");