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 96eae4a commit 9472dc9Copy full SHA for 9472dc9
eFormAPI/Installation/CustomActions/CustomAction.cs
@@ -228,7 +228,14 @@ public static ActionResult InstallCA(Session session)
228
IncrementProgressBar(session);
229
230
session.Log("Host WebAPI called");
231
- AddImageHandlers(webApiName, webApiLocation);
+ try {
232
+ AddImageHandlers(webApiName, webApiLocation);
233
+ }
234
+ catch (Exception ex)
235
+ {
236
+ MessageBox.Show(ex.Message + " " + ex.StackTrace);
237
238
+
239
240
241
CopyProtectedData(session, webApiLocation);
0 commit comments