Fix upload attempt to undefined again

This commit is contained in:
Kevin Froman 2020-11-09 00:29:15 +00:00
parent 7c3a9fb6e9
commit c58f3b1c9b
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ async function doUpload(data){
return
}
const curNode = getCurrentNode()
if (typeof curNode == "undefined"){
if (typeof curNode == "undefined" || curNode === "undefined.onion"){
setTimeout(function(){
doUpload(data)
}, 1000)