Skip to content

Commit

Permalink
fix: 'Registered' is not a version for Konica devices firmwares
Browse files Browse the repository at this point in the history
  • Loading branch information
g-bougard committed Jul 10, 2024
1 parent 12da4ab commit 19cfff3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/GLPI/Agent/SNMP/MibSupport/Konica.pm
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ sub run {
or next;
my $version = getCanonicalString(hex2char($firmwareVersion->{$key}))
or next;
next if $version eq '-';
next if $version eq '-' || $version eq "Registered";

# Strip version string at the end of name
$name =~ s/\s+version$//i;
Expand Down

0 comments on commit 19cfff3

Please sign in to comment.