We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7901c1b commit 40820e0Copy full SHA for 40820e0
1 file changed
Forms/MainFrm.cs
@@ -1241,12 +1241,12 @@ private async void InstallCodeRed(bool bManuallyChoose)
1241
StartupRoutine(true);
1242
InstallPopup.HidePopup();
1243
}
1244
- else if (moduleReport.FailReason != null)
+ else if (moduleReport.HasFailReason())
1245
{
1246
MessageBox.Show(moduleReport.FailReason, Assembly.GetTitle());
1247
1248
1249
- else if (pathReport.FailReason != null)
+ else if (pathReport.HasFailReason())
1250
1251
MessageBox.Show(pathReport.FailReason, Assembly.GetTitle());
1252
0 commit comments