From da3e11e20864f83c5ac0387ca9e393a3dc24480c Mon Sep 17 00:00:00 2001 From: SethBurkart123 Date: Thu, 22 May 2025 23:15:19 +1000 Subject: [PATCH] fix: requiring reload on install to function --- src/SEQTA.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/SEQTA.ts b/src/SEQTA.ts index 2d219134..12aee49c 100644 --- a/src/SEQTA.ts +++ b/src/SEQTA.ts @@ -8,6 +8,7 @@ import browser from "webextension-polyfill"; import * as plugins from "@/plugins"; import { main } from "@/seqta/main"; +import { delay } from "./seqta/utils/delay"; export let MenuOptionsOpen = false; @@ -45,6 +46,8 @@ async function init() { if (typeof settingsState.onoff === "undefined") { await browser.runtime.sendMessage({ type: "setDefaultStorage" }); + + await delay(5); } await main();