From 51ee0ba665b441b861d6f4ac8373fd3b530dca6a Mon Sep 17 00:00:00 2001 From: RanchiMall Dev Date: Fri, 19 Jul 2024 12:25:49 +0000 Subject: [PATCH] Workflow updating files of ribc --- ribc/index.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ribc/index.html b/ribc/index.html index 48285ac..6769a58 100644 --- a/ribc/index.html +++ b/ribc/index.html @@ -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