mirror of
https://github.com/GrahamKracker/UnityExplorer.git
synced 2025-07-15 07:56:41 +08:00
Move inner exception null check outside IL2CPP ppd
This commit is contained in:
@ -101,8 +101,10 @@ namespace UnityExplorer
|
|||||||
{
|
{
|
||||||
while (e != null)
|
while (e != null)
|
||||||
{
|
{
|
||||||
|
if (e.InnerException == null)
|
||||||
|
break;
|
||||||
#if CPP
|
#if CPP
|
||||||
if (e.InnerException == null || e.InnerException is System.Runtime.CompilerServices.RuntimeWrappedException)
|
if (e.InnerException is System.Runtime.CompilerServices.RuntimeWrappedException)
|
||||||
break;
|
break;
|
||||||
#endif
|
#endif
|
||||||
e = e.InnerException;
|
e = e.InnerException;
|
||||||
|
Reference in New Issue
Block a user