Skip to content

Commit 8c446a4

Browse files
committed
Spore ModAPI Launcher: improve error handling of ModAPI fix
1 parent 6b44d65 commit 8c446a4

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Spore ModAPI Launcher/Program.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -416,8 +416,9 @@ static bool ShowDownloadFixDialog(string outputPath)
416416
result = ExtractFixFiles(temporaryFile, outputPath);
417417
File.Delete(temporaryFile);
418418
}
419-
catch (Exception)
419+
catch (Exception ex)
420420
{
421+
MessageBox.Show(ex.ToString(), "Failed to download or extract ModAPI Fix");
421422
result = false;
422423
}
423424
});

0 commit comments

Comments
 (0)