From 875a8f101a9dde94c87eca37126af95a4c2b369f Mon Sep 17 00:00:00 2001 From: John Jenko Date: Fri, 14 Nov 2025 11:36:23 -0500 Subject: [PATCH] B2025-062 Fixed a null reference bug in the printing of Vogtle Units 3 & 4 AOP-204 --- PROMS/Volian.Print.Library/vlnParagraph.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PROMS/Volian.Print.Library/vlnParagraph.cs b/PROMS/Volian.Print.Library/vlnParagraph.cs index d2fd1df4..591ed771 100644 --- a/PROMS/Volian.Print.Library/vlnParagraph.cs +++ b/PROMS/Volian.Print.Library/vlnParagraph.cs @@ -1858,7 +1858,7 @@ namespace Volian.Print.Library // B2025-060 no section continue message if previous was not in same section or sub-section // fixes Vogtle units 3&4 3-AOP-116 Attachments 2 & 3 if ((!MyItemInfo.IsSection || MyItemInfo.IsSubsection) && - (MyItemInfo.ActiveSection == MyItemInfo.MyPrevious.ActiveSection) && + (MyItemInfo.MyPrevious != null && MyItemInfo.ActiveSection == MyItemInfo.MyPrevious.ActiveSection) && MyItemInfo.ActiveFormat.PlantFormat.FormatData.SectData.StepSectionData.ContinueSectionHeader && (!MyItemInfo.IsSection || (MyItemInfo.IsSeparateSubsection || MyItemInfo.ActiveFormat.PlantFormat.FormatData.PrintData.SpecialCaseCalvert))) {