Add TODO to fix IllegalStateException

This commit is contained in:
misaochan 2018-01-25 03:30:16 +10:00
parent 894cd299f6
commit 05044d4b9a
2 changed files with 2 additions and 1 deletions

View file

@ -78,6 +78,7 @@ public class ContributionController {
Intent pickImageIntent = new Intent(ACTION_GET_CONTENT); Intent pickImageIntent = new Intent(ACTION_GET_CONTENT);
pickImageIntent.setType("image/*"); pickImageIntent.setType("image/*");
Timber.d("startGalleryPick() called with pickImageIntent"); Timber.d("startGalleryPick() called with pickImageIntent");
//TODO Add fix for IllegalStateException here
fragment.startActivityForResult(pickImageIntent, SELECT_FROM_GALLERY); fragment.startActivityForResult(pickImageIntent, SELECT_FROM_GALLERY);
} }