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

Commit 33e8ce08 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

am: 3f62cb63

* commit '3f62cb63':
  fix filter for listeners that are not the rocket

Change-Id: I1c3f1d88b928940e3bdbd07d8f9ab3705b1cc67c
parents c2d7ba6b 3f62cb63
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -868,7 +868,7 @@ abstract public class ManagedServices {
                return false;
                return false;
            }
            }
            if (this.userid == UserHandle.USER_ALL) return true;
            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;
            if (nid == UserHandle.USER_ALL || nid == this.userid) return true;
            return supportsProfiles() && mUserProfiles.isCurrentProfile(nid);
            return supportsProfiles() && mUserProfiles.isCurrentProfile(nid);
        }
        }