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

Commit 0ec8064e authored by Mikhail Naganov's avatar Mikhail Naganov Committed by android-build-merger
Browse files

AudioPolicyService: Fix typo in UidPolicy::isUidActive am: eba668ad

am: 990504df

Change-Id: If9e83989b8fdfb35791c123bcce209a4371ed67a
parents 3fe95f77 990504df
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;
        }
    }