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

Commit ea11eb2a authored by Hugo Benichi's avatar Hugo Benichi Committed by Gerrit Code Review
Browse files

Merge "vpn: Fix NPE in VpnConfig#toString when no ProxyInfo is set"

parents 415d0a4e 980693da
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -232,7 +232,7 @@ public class VpnConfig implements Parcelable {
                .append(", allowIPv4=").append(allowIPv4)
                .append(", allowIPv6=").append(allowIPv6)
                .append(", underlyingNetworks=").append(Arrays.toString(underlyingNetworks))
                .append(", proxyInfo=").append(proxyInfo.toString())
                .append(", proxyInfo=").append(proxyInfo)
                .append("}")
                .toString();
    }