diff --git a/src/bg/action.ts b/src/bg/action.ts index 27dff88..5084b42 100644 --- a/src/bg/action.ts +++ b/src/bg/action.ts @@ -20,7 +20,7 @@ async function actionClick(tab: Tabs.Tab): Promise { await invertHostState(hostname); let frames = (await webNavigation.getAllFrames({ tabId: tab.id })) ?? []; - + // Added instead of commented below, as map currently isn't loaded properly on just frame reload... if (frames.some((frame) => frame.url.match(replacedUrlMatcher) || frame.url.match(matcher))) { tabs.reload(tab.id, { bypassCache: true });