Skip to content

Commit

Permalink
fix: return correct status in ActionService#select
Browse files Browse the repository at this point in the history
  • Loading branch information
broccolai committed Nov 1, 2023
1 parent 2c79166 commit 9e0a1d3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public boolean select(final @NonNull TagsUser user, final @NonNull ConstructedTa
TagChangeEvent event = new TagChangeEvent(user, tag);
this.eventService.post(event);

return event.cancelled();
return !event.cancelled();
}

@Override
Expand Down

0 comments on commit 9e0a1d3

Please sign in to comment.