Skip to content

Commit

Permalink
fix: avoid NPE on review edit
Browse files Browse the repository at this point in the history
  • Loading branch information
franck-x committed Jan 20, 2024
1 parent c5fde15 commit 4bc605f
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,7 @@ public void onFabClick() {
}

private void updateTags() {
if (tagDialog == null) return;
for (int i = 0; i < tagDialog.selectedTags.length; i++) {
TagDto tag = tagDialog.allTags.get(i);
if (tagDialog.selectedTags[i]) {
Expand Down

0 comments on commit 4bc605f

Please sign in to comment.