Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(s3): encode url for returning public url #602

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

purerosefallen
Copy link
Member

S3 provides public assets with encoded filename. it should be encoded here.

@@ -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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants