Skip to content

Commit

Permalink
fix(docs): remove duplicate https from CDN url (#1891)
Browse files Browse the repository at this point in the history
  • Loading branch information
sbelkadi authored Dec 12, 2024
1 parent 949ec0c commit 981e5a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion servers/fdr/src/services/s3/S3Service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export class S3ServiceImpl implements S3Service {
return FdrAPI.Url(signedUrl);
}

return FdrAPI.Url(`https://${this.publicDocsCDNUrl}/${key}`);
return FdrAPI.Url(`${this.publicDocsCDNUrl}/${key}`);
}

async getPresignedDocsAssetsUploadUrls({
Expand Down

0 comments on commit 981e5a6

Please sign in to comment.