Skip to content

Commit a684a1e

Browse files
committed
fix: Missing gzip content type from body processing logic
fixes: #447
1 parent 39a23a1 commit a684a1e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/core/infrastructure/KyRequester.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ async function processBody(response) {
5050

5151
return json || {};
5252
case 'application/octet-stream':
53+
case 'application/gzip':
5354
const blob = await response.blob();
5455
const arrayBuffer = await new Response(blob).arrayBuffer();
5556

0 commit comments

Comments
 (0)