Skip to content

Commit

Permalink
NPE
Browse files Browse the repository at this point in the history
  • Loading branch information
cjmalloy committed Aug 10, 2024
1 parent ead21c2 commit d2066f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/jasper/component/Tagger.java
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public void attachLogs(String origin, Ref parent, String title, String logs) {
ref.setComment(logs);
var tags = new ArrayList<>(List.of("internal", "+plugin/log"));
if (parent.hasTag("public")) tags.add("public");
tags.addAll(parent.getTags().stream().filter(t -> matchesTag("+user", t) || matchesTag("_user", t)).toList());
if (parent.getTags() != null) tags.addAll(parent.getTags().stream().filter(t -> matchesTag("+user", t) || matchesTag("_user", t)).toList());
ref.setTags(tags);
ingest.create(ref, false);
}
Expand Down

0 comments on commit d2066f6

Please sign in to comment.