Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/homepage/commit/d1f83c0359a09cede75d1c1fb01a080f5a465ea5 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Update http.js

pull/1662/head
shamoon 2 years ago
parent eb9721334d
commit d1f83c0359

@ -34,6 +34,9 @@ function handleRequest(requestor, url, params) {
let responseContent = response;
if (contentEncoding === 'gzip' || contentEncoding === 'deflate') {
// https://github.com/request/request/blob/3c0cddc7c8eb60b470e9519da85896ed7ee0081e/request.js#L1018-L1025
// Be more lenient with decoding compressed responses, in case of invalid gzip responses that are still accepted
// by common browsers.
responseContent = createUnzip({
flush: zlibConstants.Z_SYNC_FLUSH,
finishFlush: zlibConstants.Z_SYNC_FLUSH

Loading…
Cancel
Save