We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2701ba0 commit d35fb7eCopy full SHA for d35fb7e
src/DynamoRevit/DynamoRevit.cs
@@ -1053,9 +1053,7 @@ private static void Dispatcher_UnhandledException(
1053
try
1054
{
1055
DynamoModel.IsCrashing = true;
1056
- RevitDynamoModel.OnRequestsCrashPrompt(
1057
- RevitDynamoModel,
1058
- new CrashPromptArgs(args.Exception.Message + "\n\n" + args.Exception.StackTrace));
+ RevitDynamoModel.OnRequestsCrashPrompt(new CrashErrorReportArgs(args.Exception));
1059
RevitDynamoViewModel.Exit(false); // don't allow cancellation
1060
}
1061
catch { }
@@ -1223,4 +1221,4 @@ internal static IEnumerable<string> GetLayoutSpecsFiles()
1223
1221
return ParseinternalPackageFiles(internalPackageFiles).Select(pkg => pkg.LayoutSpecsPath);
1224
1222
1225
1226
-}
+}
0 commit comments