Skip to content

Commit a0978b8

Browse files
committed
fix(brave): robust ipfs.cat + content-type sniff
This applies cherry-picked patches from: ipfs/js-ipfs#1989 ipfs/js-ipfs#1950 and solves stream issues on page refresh. Content-type sniffing is now done over a meaningful amount of bytes instead of arbitrary number.
1 parent 5a96d77 commit a0978b8

File tree

3 files changed

+232
-268
lines changed

3 files changed

+232
-268
lines changed

add-on/src/lib/on-installed.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ exports.showPendingLandingPages = async () => {
1515
const hint = await browser.storage.local.get('showLandingPage')
1616
switch (hint.showLandingPage) {
1717
case 'onInstallWelcome':
18-
// TODO:restore await browser.storage.local.remove('showLandingPage')
18+
await browser.storage.local.remove('showLandingPage')
1919
return browser.tabs.create({
2020
url: '/dist/landing-pages/welcome/index.html'
2121
})

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -121,9 +121,9 @@
121121
"filesize": "4.1.2",
122122
"http-dns": "3.0.1",
123123
"http-node": "1.2.0",
124-
"ipfs": "https://github.com/lidel/js-ipfs/tarball/5a6327879a03aac95eb008f746455d7e22891a53/js-ipfs.tar.gz",
124+
"ipfs": "https://github.com/lidel/js-ipfs/tarball/6197ced20dbcf5e4d699b67fbd6510d671a4dc52/js-ipfs.tar.gz",
125125
"ipfs-css": "0.12.0",
126-
"ipfs-http-client": "30.1.0",
126+
"ipfs-http-client": "30.1.2",
127127
"ipfs-http-response": "0.2.2",
128128
"ipfs-postmsg-proxy": "3.1.1",
129129
"ipfsx": "0.17.0",

0 commit comments

Comments
 (0)