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

Commit 54affb5b authored by Chen Xu's avatar Chen Xu Committed by Automerger Merge Worker
Browse files

Merge "Call SubscriptionManagerService#updateEmbeddedSubscriptions API...

Merge "Call SubscriptionManagerService#updateEmbeddedSubscriptions API callback once after the embedded subs info update is completed." into udc-dev am: 6c36fa30

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/opt/telephony/+/22964116



Change-Id: I9002fc7b7c99f51b61c045502fc91f989a054f35
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents ef6a89e9 6c36fa30
Loading
Loading
Loading
Loading
+7 −4
Original line number Diff line number Diff line
@@ -1158,11 +1158,14 @@ public class SubscriptionManagerService extends ISub.Stub {
            } else {
                loge("The eSIM profiles update was not successful.");
            }
        });
            log("updateEmbeddedSubscriptions: Finished embedded subscription update.");
            // The runnable will be executed in the main thread. Pre Android-U behavior.
            mHandler.post(() -> {
                if (callback != null) {
                    callback.run();
                }
            });
        });
    }

    /**