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

Commit 63a7d711 authored by Sudheer Shanka's avatar Sudheer Shanka
Browse files

Fix the arguments order to postBlockedReasonsChangedMsg.

Bug: 226402870
Test: atest tests/cts/hostside/src/com/android/cts/net/HostsideNetworkCallbackTests.java
Change-Id: I1977034aa190b67de96d84d694c6546fd9318e79
Merged-In: I1977034aa190b67de96d84d694c6546fd9318e79
parent 99b5c0cb
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -5044,8 +5044,8 @@ public class NetworkPolicyManagerService extends INetworkPolicyManager.Stub {
        }
        if (oldEffectiveBlockedReasons != newEffectiveBlockedReasons) {
            postBlockedReasonsChangedMsg(uid,
                    oldEffectiveBlockedReasons,
                    newEffectiveBlockedReasons);
                    newEffectiveBlockedReasons,
                    oldEffectiveBlockedReasons);

            postUidRulesChangedMsg(uid, uidRules);
        }