This commit is contained in:
crusader 2018-10-18 13:08:11 +09:00
parent 35550a99bc
commit 133dd12de6

View File

@ -56,7 +56,12 @@ export class HostComponent implements OnChanges {
deadline: this.deadline,
};
this.pingService.pingHost(this.host, option)
const _host: Host = {
...this.host,
portList: null,
};
this.pingService.pingHost(_host, option)
.pipe(
map((pingResult: PingResult) => {
if (pingResult) {