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

Commit 0c4eeb49 authored by Chris Wren's avatar Chris Wren
Browse files

fix filter for listeners that are not the rocket

Bug: 28664037
Change-Id: Id1e4b243ed7423dbd2d4a8ead829cba9b20f30cd
parent c952b035
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);
        }