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

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

Merge "IpClient: fix in InitialConfiguration validation."

am: 18c144cf

Change-Id: I8e89607dde223f0662ca4651dc5e8e644b8fa631
parents a42857e3 18c144cf
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;
            }