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

Commit 7be0d1ca authored by Chris Wren's avatar Chris Wren Committed by android-build-merger
Browse files

Merge "fix filter for listeners that are not the rocket" into nyc-dev

am: 2e35847a

* commit '2e35847a':
  fix filter for listeners that are not the rocket

Change-Id: I00092556795bb085060508cb18f62fbeecf42d09
parents a4f8525f 2e35847a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -868,7 +868,7 @@ abstract public class ManagedServices {
                return false;
            }
            if (this.userid == UserHandle.USER_ALL) return true;
            if (this.userid == UserHandle.USER_SYSTEM) return true;
            if (this.isSystem) return true;
            if (nid == UserHandle.USER_ALL || nid == this.userid) return true;
            return supportsProfiles() && mUserProfiles.isCurrentProfile(nid);
        }