Skip to content

Commit 4353aa7

Browse files
committed
rm unneccesary encodeURI
1 parent db7b097 commit 4353aa7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/utils.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1244,7 +1244,7 @@ export async function downloadFile(
12441244

12451245
let connections = 1
12461246
try {
1247-
const response = await axios.head(encodeURI(url))
1247+
const response = await axios.head(url)
12481248
const cdnCache = response.headers['cdn-cache']
12491249
const isCached = cdnCache === 'HIT' || cdnCache === 'STALE'
12501250
if (isCached) {

0 commit comments

Comments
 (0)