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

Commit 71d23c3e authored by Hugo Benichi's avatar Hugo Benichi Committed by android-build-merger
Browse files

Merge "IpClient: fix in InitialConfiguration validation." am: 18c144cf

am: 91468775

Change-Id: I53ec407f2a5762a2420d8370fca32a28b12fdded
parents 4d099709 91468775
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;
            }