Skip to content

Commit

Permalink
hotfix: 최대글자수 길이를 100자로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
hong-sile committed Aug 31, 2024
1 parent a3ee3e3 commit abdc2e8
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ private String extractArtistNames(final List<TransferredMusicInContext> transfer
.collect(groupingBy(identity(), counting()));
return artistCountMap.keySet().stream()
.sorted(comparing(artistCountMap::get).reversed())
.collect(Collectors.joining(","));
.collect(Collectors.joining(","))
.substring(0, 100);
}
}

0 comments on commit abdc2e8

Please sign in to comment.