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 9472dc9 commit 1a98af0Copy full SHA for 1a98af0
eFormAPI/Installation/CustomActions/CustomAction.cs
@@ -476,7 +476,14 @@ public static ActionResult UpdateCA(Session session)
476
IncrementProgressBar(session);
477
478
session.Log("AddImageHandlers called");
479
- AddImageHandlers(webApiName, webApiLocation);
+ try
480
+ {
481
+ AddImageHandlers(webApiName, webApiLocation);
482
+ }
483
+ catch (Exception ex)
484
485
+ MessageBox.Show(ex.Message + " " + ex.StackTrace);
486
487
AddAspNetCoreSection(webApiName, webApiLocation);
488
489
0 commit comments