Skip to content

Commit 0af313a

Browse files
committed
chore: decode full url
1 parent 555174e commit 0af313a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/httpsnippet.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,10 +312,12 @@ export class HTTPSnippet {
312312
...uriObj,
313313
}); //?
314314

315+
const decodedFullUrl = decodeURIComponent(fullUrl);
316+
315317
return {
316318
...request,
317319
allHeaders,
318-
fullUrl,
320+
fullUrl:decodedFullUrl,
319321
url,
320322
uriObj,
321323
};

0 commit comments

Comments
 (0)