From 9b21dae636dacdba6c36618e720d8184e4e12171 Mon Sep 17 00:00:00 2001 From: Mitra Ardron Date: Fri, 21 Jun 2019 18:48:03 +1000 Subject: [PATCH] Reenable WOLK by default --- Transports.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Transports.js b/Transports.js index a18c231..0dd61eb 100644 --- a/Transports.js +++ b/Transports.js @@ -715,7 +715,7 @@ class Transports { // WOLK is currently failing, and what is worse returning a data structure with a 404 instead of just failing // GUN is turned off by default because it fills up localstorage on browser and stops working, https://github.com/internetarchive/dweb-archive/issues/106 //if (! tabbrevs.length) { tabbrevs = ["HTTP", "YJS", "IPFS", "WEBTORRENT", "GUN", "WOLK"]; } // SEE-OTHER-ADDTRANSPORT - if (! tabbrevs.length) { tabbrevs = ["HTTP", "YJS", "IPFS", "WEBTORRENT"]; } // SEE-OTHER-ADDTRANSPORT + if (! tabbrevs.length) { tabbrevs = ["HTTP", "IPFS", "WEBTORRENT", "WOLK"]; } // SEE-OTHER-ADDTRANSPORT tabbrevs = tabbrevs.map(n => n.toUpperCase()); let transports = this.setup0(tabbrevs, options); ["statuscb", "mirror"].forEach(k => { if (options[k]) this[k] = options[k];} )