git ssb

2+

ev / mvd



Commit 6fb0136e77ef47dbeebce12754ebcf25ed3e955c

make sure there\'s no race condition if the browser is slow to load the remote

Ev Bogue committed on 7/2/2018, 2:54:37 PM
Parent: df1433307a5a4faa316f72012211f6d8138f6e19

Files changed

config.jschanged
config.jsView
@@ -16,9 +16,11 @@
1616 var config = JSON.parse(localStorage[host])
1717 getConfig()
1818 } else {
1919 getConfig()
20- location.reload()
20 + setTimeout(function () {
21 + location.reload()
22 + }, 1000)
2123 }
2224
2325 config.blobsUrl = host + '/blobs/get/'
2426 config.emojiUrl = host + '/img/emoji/'

Built with git-ssb-web