We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04be933 commit 84f4337Copy full SHA for 84f4337
src/bundles/files/actions.js
@@ -416,9 +416,8 @@ const actions = () => ({
416
* Generates sharable link for the provided files.
417
* @param {FileStat[]} files
418
*/
419
- doFilesShareLink: (files) => perform(ACTIONS.SHARE_LINK, async (ipfs, { store }) => {
420
- ensureMFS(store)
421
-
+ doFilesShareLink: (files) => perform(ACTIONS.SHARE_LINK, async (ipfs) => {
+ // ensureMFS deliberately omitted here, see https://github.com/ipfs/ipfs-webui/issues/1744 for context.
422
return await getShareableLink(files, ipfs)
423
}),
424
0 commit comments