mirror of
https://github.com/opensim/opensim.git
synced 2026-07-20 06:35:39 +08:00
Fix an exception handling issue in XEngine
This commit is contained in:
@@ -613,7 +613,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Instance
|
||||
m_InEvent = false;
|
||||
m_CurrentEvent = String.Empty;
|
||||
|
||||
if (!(e is TargetInvocationException) || !(e.InnerException is SelfDeleteException))
|
||||
if ((!(e is TargetInvocationException) || !(e.InnerException is SelfDeleteException)) && (!(e is ThreadAbortException)))
|
||||
{
|
||||
try
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user