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

Commit 44b6289c 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

am: 71d23c3e

Change-Id: I7fe3517e53aa29b8ea1f45b6351f89cdfd2af5ba
parents 0cf90160 71d23c3e
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;
            }