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

Commit 500c9959 authored by Miranda Kephart's avatar Miranda Kephart Committed by Automerger Merge Worker
Browse files

Merge "Check for null service in ScreenshotHelper" into rvc-dev am: 1e23e8e2

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

Change-Id: I0d513bd1b4bdd04caea425c5ffbabd51cff19a73
parents 4099e24d 1e23e8e2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -316,7 +316,7 @@ public class ScreenshotHelper {
            };
            msg.replyTo = new Messenger(h);

            if (mScreenshotConnection == null) {
            if (mScreenshotConnection == null || mScreenshotService == null) {
                final ComponentName serviceComponent = ComponentName.unflattenFromString(
                        mContext.getResources().getString(
                                com.android.internal.R.string.config_screenshotServiceComponent));