add intent!=null check in onActivityResultin PublishProfilePicture
This commit is contained in:
parent
ba143a2730
commit
0619685e55
|
@ -187,7 +187,7 @@ public class PublishProfilePictureActivity extends XmppActivity {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (requestCode == Crop.REQUEST_CROP) {
|
if (requestCode == Crop.REQUEST_CROP && data != null) {
|
||||||
Throwable throwable = Crop.getError(data);
|
Throwable throwable = Crop.getError(data);
|
||||||
if (throwable != null && throwable instanceof OutOfMemoryError) {
|
if (throwable != null && throwable instanceof OutOfMemoryError) {
|
||||||
Toast.makeText(this,R.string.selection_too_large, Toast.LENGTH_SHORT).show();
|
Toast.makeText(this,R.string.selection_too_large, Toast.LENGTH_SHORT).show();
|
||||||
|
|
Loading…
Reference in a new issue