Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion plugins/assets/s3/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class S3Assets extends Assets {
}
const { buffer, filename } = await this.analyze(url, file)
const s3Key = `${this.config.pathPrefix}${filename}`
const finalUrl = `${this.config.publicUrl}${filename}`
const finalUrl = `${this.config.publicUrl}${encodeURIComponent(filename)}`
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is slash expected as a suffix for publicUrl?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is designed to match the same behavior as pathPrefix.

try {
const checkExisting = await this.listObjects(s3Key)
if (checkExisting.Contents?.some((obj) => obj.Key === s3Key)) return finalUrl
Expand Down