Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
denis-yuen committed Sep 15, 2023
1 parent c8f9d2f commit 3a2845c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -830,7 +830,7 @@ public void handleInfo(String entryPath) {
}
out("TAGS");

List<Tag> tags = container.getTags();
List<Tag> tags = container.getTags() == null ? new ArrayList<>() : container.getTags();
int tagSize = tags.size();
StringBuilder builder = new StringBuilder();
if (tagSize > 0) {
Expand Down

0 comments on commit 3a2845c

Please sign in to comment.