Skip to content

Commit

Permalink
fix(engine-core): encode uri for real fetch implementation (#13782)
Browse files Browse the repository at this point in the history
  • Loading branch information
millsp committed Jun 13, 2022
1 parent fa59d57 commit 662cf8c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -66,5 +66,5 @@ export async function getClientVersion(config: EngineConfig) {
* @returns
*/
function prismaPkgURL(version: string) {
return `https://unpkg.com/prisma@${version}/package.json`
return encodeURI(`https://unpkg.com/prisma@${version}/package.json`)
}

0 comments on commit 662cf8c

Please sign in to comment.