diff --git a/index.html b/index.html index 9480787..01103ef 100644 --- a/index.html +++ b/index.html @@ -36,7 +36,7 @@ GNU

lycan is a message board program that utilizes the Onionr network.

posts are rate-limited and protected using a partial hash collision proof of work function.

@@ -77,7 +77,7 @@
-

Markdown and limited HTML is supported.

+

markdown and limited HTML is supported.

diff --git a/js/message-creator.js b/js/message-creator.js index 1d5c223..009c07d 100644 --- a/js/message-creator.js +++ b/js/message-creator.js @@ -48,6 +48,13 @@ async function doUpload(data){ }, 1000) return } + const curNode = getCurrentNode() + if (typeof curNode == "undefined"){ + setTimeout(function(){ + doUpload(data) + }, 1000) + return + } let decoder = new TextDecoder("utf-8") let uploadTimeout = setTimeout(function(){