Skip to content

Commit

Permalink
v1.0.2
Browse files Browse the repository at this point in the history
[FIX] 이미지 파일 명 예외 해결
  • Loading branch information
Goder-0 authored Nov 6, 2024
2 parents f8e759c + 955fb51 commit e1f3325
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ public class CloudFrontService {
private String keyPairId;

public String getSignedUrl(String path, String fileName, long version) {
if (fileName == null || fileName.isEmpty()) {
return null;
}
try {
String resourcePath = getEncodedResourcePath(path, fileName);
String cloudFrontUrl = String.format("https://%s/%s?v=%d", distributionDomain, resourcePath, version);
Expand Down
Empty file.

0 comments on commit e1f3325

Please sign in to comment.