Skip to content

Commit

Permalink
Update ImagePickerActivity.java (#38)
Browse files Browse the repository at this point in the history
Looks like you've forgotten to use handler field.
  • Loading branch information
mars885 authored and esafirm committed Mar 30, 2017
1 parent d26cd73 commit 947c141
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ protected void onStart() {
if (handler == null) {
handler = new Handler();
}
observer = new ContentObserver(new Handler()) {
observer = new ContentObserver(handler) {
@Override
public void onChange(boolean selfChange) {
getData();
Expand Down

0 comments on commit 947c141

Please sign in to comment.