Skip to content

Commit

Permalink
fix: Fixed wrong reference to ipv4 disabled for ipv6
Browse files Browse the repository at this point in the history
Signed-off-by: MMaiero <[email protected]>
  • Loading branch information
MMaiero committed Nov 21, 2024
1 parent 0406832 commit 3237901
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -620,7 +620,7 @@ private void refreshForm() {

// Tcp/IP disabled
if (tcpip4Status.equals(GwtNetIfStatus.netIPv4StatusDisabled.getValue())
&& tcpip6Status.equals(GwtNetIfStatus.netIPv4StatusDisabled.getValue())) {
&& tcpip6Status.equals(GwtNetIfStatus.netIPv6StatusDisabled.getValue())) {
setForm(false);
} else {
setForm(true);
Expand Down

0 comments on commit 3237901

Please sign in to comment.