Fix an exception handling issue in XEngine
parent
dd886a035b
commit
ab87a987f5
|
@ -613,7 +613,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Instance
|
||||||
m_InEvent = false;
|
m_InEvent = false;
|
||||||
m_CurrentEvent = String.Empty;
|
m_CurrentEvent = String.Empty;
|
||||||
|
|
||||||
if (!(e is TargetInvocationException) || !(e.InnerException is SelfDeleteException))
|
if ((!(e is TargetInvocationException) || !(e.InnerException is SelfDeleteException)) && (!(e is ThreadAbortException)))
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue