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

Commit 990504df authored by Mikhail Naganov's avatar Mikhail Naganov Committed by android-build-merger
Browse files

AudioPolicyService: Fix typo in UidPolicy::isUidActive

am: eba668ad

Change-Id: If7b3c8cf8c49b401fb9fa859662eb8daf29df7b0
parents 43e13d2c eba668ad
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -549,7 +549,7 @@ bool AudioPolicyService::UidPolicy::isUidActive(uid_t uid) {
        // In an absense of the ActivityManager, assume everything to be active.
        if (!mObserverRegistered) return true;
        auto cacheIter = mCachedUids.find(uid);
        if (cacheIter != mOverrideUids.end()) {
        if (cacheIter != mCachedUids.end()) {
            return cacheIter->second;
        }
    }