From d475f6db6b521e4f8f50f83d67698d4797b95502 Mon Sep 17 00:00:00 2001 From: sairajzero Date: Sat, 5 Jun 2021 13:25:14 +0530 Subject: [PATCH] bugfix: flosight --- app/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/index.html b/app/index.html index 74b14fb..cec0559 100644 --- a/app/index.html +++ b/app/index.html @@ -7399,7 +7399,7 @@ Bitcoin.Util = { fetch_retry: function (apicall) { return new Promise((resolve, reject) => { this.serverList.splice(this.curPos, 1); - this.curPos = floCrypto.randInt(0, this.serverList.length) + this.curPos = floCrypto.randInt(0, this.serverList.length - 1) this.fetch_api(apicall) .then(result => resolve(result)) .catch(error => reject(error));