diff --git a/DDUtilityApp/LOGPARSER/PARSER/EisParser0.cs b/DDUtilityApp/LOGPARSER/PARSER/EisParser0.cs index 51da569..62afdce 100644 --- a/DDUtilityApp/LOGPARSER/PARSER/EisParser0.cs +++ b/DDUtilityApp/LOGPARSER/PARSER/EisParser0.cs @@ -381,7 +381,7 @@ namespace DDUtilityApp.LOGPARSER.PARSER dlg.Size = sender.Size; dlg.StartPosition = FormStartPosition.CenterParent; dlg.ServerName = this.ServerName; - dlg.Equipment = sender.Equipment; + dlg.Equipment = sender.Equipment == null ? new EisEquipment() { EquipmentID = this.EquipmentID, Server = new LogServer(this.ServerName)} : sender.Equipment; dlg.SelectedLogFiles = logFiles.ToArray(); DialogResult dlgResult = dlg.ShowDialog(); if (dlgResult != DialogResult.OK) return null;