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

Commit cdc16ff3 authored by Yi Jiang's avatar Yi Jiang Committed by Automerger Merge Worker
Browse files

Merge "Don't cancel the previous request if it's fulfilled." into sc-dev am: 792a32cb

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/15132413

Change-Id: I60d5c3edbcc9a6cb05d6710aafc6f9d6c4a46ff3
parents b64efe77 792a32cb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -109,7 +109,7 @@ final class RotationResolverManagerPerUserService extends
        ensureRemoteServiceInitiated();

        // Cancel the previous on-going request.
        if (mCurrentRequest != null) {
        if (mCurrentRequest != null && !mCurrentRequest.mIsFulfilled) {
            cancelLocked();
        }