Browse Source

add mobile version for balance dashboard

main
matthew 2 years ago
parent
commit
555f91147f
  1. 6
      searching-front/services/domain-watcher.ts

6
searching-front/services/domain-watcher.ts

@ -107,12 +107,12 @@ const fetchDomainInfo = async (url: string, count=0) => {
address, address,
} }
} }
console.log('There is no domain info ofr', url) console.log('There is no domain info', url)
return null return null
} catch (e) { } catch (e) {
if(count < 10){ if(count < 10){
console.log('Failed fetch domain info for', url,e) console.log('Failed fetch domain info', count,url, e)
await wait(Math.floor(Math.random() * 10)) await wait(Math.floor(Math.random() * 10)+5)
return await fetchDomainInfo(url, count++) return await fetchDomainInfo(url, count++)
} }
return null return null

Loading…
Cancel
Save