Update index.html

Errorfix3
This commit is contained in:
tripathyr 2024-07-19 17:53:42 +05:30 committed by GitHub
parent 45d07886fb
commit 1bb93308ff
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4209,7 +4209,8 @@
//Errorfix 2 - Making sure FLO ID is in the intern list
const internList = RIBC.getInternList();
if (!(floId in internList)) return; // check if floId is of an intern
// Ensure internList is defined and floId exists in it
if (!internList || !(floId in internList)) return; // check if floId is of an intern
if (!RIBC.getInternList()[floId]) return; // check if floId is of an intern
const { txid, floData, time } = tx