bitty-tui 0.0.8 → 0.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/clients/bw.js +0 -1
- package/package.json +1 -1
package/dist/clients/bw.js
CHANGED
|
@@ -49,7 +49,6 @@ function fetch(url, options = {}, body = null) {
|
|
|
49
49
|
const onEnd = () => {
|
|
50
50
|
cleanup();
|
|
51
51
|
if (res.statusCode && (res.statusCode < 200 || res.statusCode >= 300)) {
|
|
52
|
-
console.error("HTTP error body:", data);
|
|
53
52
|
reject(new FetchError(res.statusCode, data, `HTTP error: ${res.statusCode} ${res.statusMessage}`));
|
|
54
53
|
return;
|
|
55
54
|
}
|