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

Commit 8e9a95f2 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...

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

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

Change-Id: I7ff1da82948c12f3b8cd8351d1774af2c3ad09ed
parents 76c64ef2 e53e8599
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));