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

Commit 31492c70 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Fix a theoretical NPE" am: c312053b am: 668661d9 am: df0ee25d am:...

Merge "Fix a theoretical NPE" am: c312053b am: 668661d9 am: df0ee25d am: 550a0e9b am: 96114c00

Change-Id: I762e107606d5974b04376711c256fd8758546854
parents d154e66c 96114c00
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -812,7 +812,7 @@ public abstract class NetworkAgent {
     *        this is the destination the probes are being redirected to, otherwise {@code null}.
     */
    public void onValidationStatus(@ValidationStatus int status, @Nullable Uri redirectUri) {
        networkStatus(status, redirectUri.toString());
        networkStatus(status, null == redirectUri ? "" : redirectUri.toString());
    }
    /** @hide TODO delete once subclasses have moved to onValidationStatus */
    protected void networkStatus(int status, String redirectUrl) {