Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 18c144cf authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "IpClient: fix in InitialConfiguration validation."

parents 7b7e0545 509c0615
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -524,7 +524,7 @@ public class IpClient extends StateMachine {
                return false;
            }
            // There no more than one IPv4 address
            if (ipAddresses.stream().filter(Inet4Address.class::isInstance).count() > 1) {
            if (ipAddresses.stream().filter(LinkAddress::isIPv4).count() > 1) {
                return false;
            }