Skip to content

Commit

Permalink
Issues, SNMP
Browse files Browse the repository at this point in the history
  • Loading branch information
veniware committed Aug 19, 2024
1 parent 53204d4 commit 6ec575c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Protest/Workers/Issues.cs
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,11 @@ public static void ScanDevice(KeyValuePair<string, Database.Entry> device) {

}
else if (Data.PRINTER_TYPES.Contains(typeAttribute?.value)) {

if (CheckPrinterComponent(device.Value, out Issue[] printerIssues) && issue.HasValue) {
for (int i = 0; i < printerIssues.Length; i++) {
issues.Add(printerIssues[i]);
}
}
}
else if (Data.SWITCH_TYPES.Contains(typeAttribute?.value)) {

Expand Down

0 comments on commit 6ec575c

Please sign in to comment.