Skip to content

Commit

Permalink
feat: artwork url 수정 로직 추가(#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
hong-sile committed Aug 16, 2024
1 parent 4d709a3 commit 06448b9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/java/play/pluv/oauth/apple/dto/Artwork.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,8 @@ public record Artwork(
String url
) {

public String url() {
return url.replace("{w}", "640")
.replace("{h}", "640");
}
}

0 comments on commit 06448b9

Please sign in to comment.