Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

Commit 9c9aac8

Browse files
author
Alan Shaw
committed
fix: big downloads in electron
License: MIT Signed-off-by: Alan Shaw <alan.shaw@protocol.ai>
1 parent 0ff4d52 commit 9c9aac8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib/error-handler.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
const { HTTPError } = require('ky-universal')
44
const log = require('debug')('ipfs-http-client:lib:error-handler')
5-
const { isNode } = require('ipfs-utils/src/env')
5+
const { isNode, isElectron } = require('ipfs-utils/src/env')
66

77
function isJsonResponse (res) {
88
return (res.headers.get('Content-Type') || '').startsWith('application/json')
@@ -18,7 +18,7 @@ module.exports = async function errorHandler (input, options, response) {
1818
//
1919
// If the body in the clone is not consumed or destroyed the highwater mark
2020
// will be reached (for large payloads) and stop the real body from flowing.
21-
if (isNode) response.body.destroy()
21+
if (isNode || isElectron) response.body.destroy()
2222
return
2323
}
2424

0 commit comments

Comments
 (0)