mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-15 10:41:58 +00:00
Fix crash when creating tasks
This commit is contained in:
parent
46598945c3
commit
54273f4f85
1 changed files with 5 additions and 1 deletions
|
|
@ -128,7 +128,11 @@ public class TaskFormActivity extends AppCompatActivity implements AdapterView.O
|
|||
}
|
||||
|
||||
private void createCheckListRecyclerView() {
|
||||
checklistAdapter = new CheckListAdapter(task.getChecklist());
|
||||
List<ChecklistItem> checklistItems = new ArrayList<>();
|
||||
if (task.getChecklist() != null) {
|
||||
checklistItems = task.getChecklist();
|
||||
}
|
||||
checklistAdapter = new CheckListAdapter(checklistItems);
|
||||
RecyclerView recyclerView = (RecyclerView) findViewById(R.id.checklist_recycler_view);
|
||||
|
||||
LinearLayoutManager llm = new LinearLayoutManager(this);
|
||||
|
|
|
|||
Loading…
Reference in a new issue