Skip to content

Commit

Permalink
Merge pull request #13 from lishangbu/master
Browse files Browse the repository at this point in the history
🐛 Fixing a bug.修复获取用于上传的文件外链方法错误调用下载的文件外链的问题
  • Loading branch information
lltx authored Nov 10, 2021
2 parents d3c866d + a01665c commit 6c9dcbc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ public String getObjectURL(String bucketName, String objectName, Duration expire
* @see AmazonS3#generatePresignedUrl(String bucketName, String key, Date expiration)
*/
public String getPutObjectURL(String bucketName, String objectName, int minutes) {
return getObjectURL(bucketName, objectName, Duration.ofMinutes(minutes));
return getPutObjectURL(bucketName, objectName, Duration.ofMinutes(minutes));
}

/**
Expand Down

0 comments on commit 6c9dcbc

Please sign in to comment.