change unknow to id for no name port
This commit is contained in:
parent
fdea339f95
commit
cfe331cedc
|
@ -137,7 +137,7 @@ sub api_request {
|
||||||
$webcontent = $json->decode($jsoncontent);
|
$webcontent = $json->decode($jsoncontent);
|
||||||
};
|
};
|
||||||
if ($webcontent->{port}->{name} eq '') {
|
if ($webcontent->{port}->{name} eq '') {
|
||||||
$self->{port_infos}->{name} = "unknown";
|
$self->{port_infos}->{name} = $webcontent->{port}->{id};
|
||||||
} else {
|
} else {
|
||||||
$self->{port_infos}->{name} = $webcontent->{port}->{name};
|
$self->{port_infos}->{name} = $webcontent->{port}->{name};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue