fix: opt-out from redirects done by browser extension
Context: https://github.com/ipfs-shipyard/ipfs-companion/pull/505merge-requests/2/merge
parent
f2e23994be
commit
6dd5f510df
4
app.js
4
app.js
|
@ -27,7 +27,9 @@ function checkGateways (gateways) {
|
|||
let checked = 0
|
||||
gateways.forEach((gateway) => {
|
||||
const gatewayAndHash = gateway.replace(':hash', hashToTest)
|
||||
fetch(gatewayAndHash)
|
||||
// opt-out from gateway redirects done by browser extension
|
||||
const testUrl = gatewayAndHash + '#x-ipfs-no-redirect'
|
||||
fetch(testUrl)
|
||||
.then(res => res.text())
|
||||
.then((text) => {
|
||||
const matched = text.trim() === hashString.trim()
|
||||
|
|
Loading…
Reference in New Issue