Fixed null pointer exception
This commit is contained in:
parent
e9d01dc104
commit
6d47d7232f
@ -98,10 +98,14 @@ public class BookmarksFragment extends Fragment implements View.OnClickListener,
|
|||||||
return Observable.create(new Action<BookmarkViewAdapter>() {
|
return Observable.create(new Action<BookmarkViewAdapter>() {
|
||||||
@Override
|
@Override
|
||||||
public void onSubscribe(@NonNull Subscriber<BookmarkViewAdapter> subscriber) {
|
public void onSubscribe(@NonNull Subscriber<BookmarkViewAdapter> subscriber) {
|
||||||
|
Context context = getContext();
|
||||||
|
if (context != null) {
|
||||||
mBookmarkAdapter = new BookmarkViewAdapter(getContext(), mBookmarks);
|
mBookmarkAdapter = new BookmarkViewAdapter(getContext(), mBookmarks);
|
||||||
setBookmarkDataSet(mBookmarkManager.getBookmarksFromFolder(null, true), false);
|
setBookmarkDataSet(mBookmarkManager.getBookmarksFromFolder(null, true), false);
|
||||||
subscriber.onNext(mBookmarkAdapter);
|
subscriber.onNext(mBookmarkAdapter);
|
||||||
}
|
}
|
||||||
|
subscriber.onComplete();
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user