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

Commit eba668ad authored by Mikhail Naganov's avatar Mikhail Naganov
Browse files

AudioPolicyService: Fix typo in UidPolicy::isUidActive

Copy-paste bug.

Bug: 77300296
Bug: 77624334
Test: make
Change-Id: Id5352dafe70003d7027a2ec71144570ac927ea73
parent 79d1ed9b
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;
        }
    }