Skip to content

Commit

Permalink
ayfkm?
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Reed committed Feb 23, 2024
1 parent 240308b commit 54dea77
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -394,9 +394,9 @@ public Optional<Tunnel> getTunnelState(final String dataKey) throws VelocloudApi
.withId(tunnel.getId())
.withDataKey(tunnel.getDataKey())
.withState(tunnel.getState().getValue())
.withLink(tunnel.getData().getLink())
.withName(tunnel.getData().getName())
.withDestination(tunnel.getData().getDestination() != null ? tunnel.getData().getDestination().toLowerCase() : null)
.withLink(tunnel.getMonitoringGetEnterpriseEdgeNvsTunnelStatusResultItemData().getLink())
.withName(tunnel.getMonitoringGetEnterpriseEdgeNvsTunnelStatusResultItemData().getName())
.withDestination(tunnel.getMonitoringGetEnterpriseEdgeNvsTunnelStatusResultItemData().getDestination() != null ? tunnel.getMonitoringGetEnterpriseEdgeNvsTunnelStatusResultItemData().getDestination().toLowerCase() : null)
.build())
.findFirst();
}
Expand Down

0 comments on commit 54dea77

Please sign in to comment.