Merge "Check for null service in ScreenshotHelper" into rvc-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
1e23e8e274
@@ -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));
|
||||
|
||||
Reference in New Issue
Block a user