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

Commit 6c36fa30 authored by Chen Xu's avatar Chen Xu Committed by Android (Google) Code Review
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
parents b7ff375b 330ba257
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();
                }
            });
        });
    }

    /**