From 29d1131a6f1916351439f8fcb0c986b69bbd0d1b Mon Sep 17 00:00:00 2001 From: Kuba Orlik Date: Sat, 6 Nov 2021 22:33:49 +0100 Subject: [PATCH] Hide IAB info for now --- request-cluster.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/request-cluster.ts b/request-cluster.ts index 166381e..7a9972d 100644 --- a/request-cluster.ts +++ b/request-cluster.ts @@ -24,11 +24,11 @@ export class StolenDataEntry { public name: string, public value: string ) { - try { - this.iab = TCString.decode(value); - // console.log(this.iab); - this.isIAB = true; - } catch (e) {} + // try { + // this.iab = TCString.decode(value); + // // console.log(this.iab); + // this.isIAB = true; + // } catch (e) {} this.id = id.next().value as number; }