#414 clicking discover button with empty field causes crash
This commit is contained in:
4
Changes
4
Changes
@@ -6,6 +6,10 @@
|
|||||||
* #410 improvements to Undiscovered Neighbors report
|
* #410 improvements to Undiscovered Neighbors report
|
||||||
* device port search will match on Description as well as Port
|
* device port search will match on Description as well as Port
|
||||||
|
|
||||||
|
[BUG FIXES]
|
||||||
|
|
||||||
|
* #414 clicking discover button with empty field causes crash
|
||||||
|
|
||||||
2.039028 - 2018-05-05
|
2.039028 - 2018-05-05
|
||||||
|
|
||||||
[BUG FIXES]
|
[BUG FIXES]
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ sub add_job {
|
|||||||
return if
|
return if
|
||||||
($device and (!$net or $net->num == 0 or $net->addr eq '0.0.0.0'));
|
($device and (!$net or $net->num == 0 or $net->addr eq '0.0.0.0'));
|
||||||
|
|
||||||
my @hostlist = defined $device ? ($net->hostenum) : (undef);
|
my @hostlist = $device ? ($net->hostenum) : (undef);
|
||||||
|
|
||||||
jq_insert([map {{
|
jq_insert([map {{
|
||||||
($_ ? (device => $_->addr) : ()),
|
($_ ? (device => $_->addr) : ()),
|
||||||
|
|||||||
Reference in New Issue
Block a user