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

Commit d11dbe5c 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: I83c11715a9dccc471315f3acb8cb7f13346d8f3e
parents f65cbbbe 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();
        }