fix S3 URL escaping (#14220)

This commit is contained in:
Pedro Guzman
2025-12-04 22:03:17 +01:00
committed by GitHub
parent b7adfb225b
commit 56ed9cf9f7
2 changed files with 18 additions and 1 deletions
@@ -160,7 +160,7 @@ export class S3FileService extends AbstractFileProviderService {
}
return {
url: `${this.config_.fileUrl}/${encodeURI(fileKey)}`,
url: `${this.config_.fileUrl}/${encodeURIComponent(fileKey)}`,
key: fileKey,
}
}