From 52006247feed3451b440c908c59897bb65720f4e Mon Sep 17 00:00:00 2001 From: CanadaHonk <19228318+CanadaHonk@users.noreply.github.com> Date: Tue, 7 Jun 2022 23:01:38 +0100 Subject: [PATCH] [Index] Fix Topaz injection being in strict mode --- src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index 99e66e07..ddea2a13 100644 --- a/src/index.js +++ b/src/index.js @@ -253,7 +253,7 @@ const init = async function () { } if (this.storage.get('goosemodTopaz')) setTimeout(async () => { - eval(await (await fetch('https://goosemod.github.io/topaz/out.js', { cache: 'no-store' })).text()); + (1, eval)(await (await fetch('https://goosemod.github.io/topaz/out.js', { cache: 'no-store' })).text()); }, 1000); ProfileStoreInit();