We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b01c955 commit c0d4c9aCopy full SHA for c0d4c9a
1 file changed
src/UniGetUI/CrashHandler.cs
@@ -40,7 +40,8 @@ public static void ReportFatalException(Exception e)
40
Exception? fileEx = e;
41
while (fileEx is not null)
42
{
43
- if (fileEx.ToString().Contains("Could not load file or assembly"))
+ if (fileEx.ToString().Contains("Could not load file or assembly")
44
+ || (uint)fileEx.HResult is 0x80070002)
45
46
if (_reportMissingFiles())
47
0 commit comments