From 5ed6379687ff5273cbf9b5629a872d6b8aeaa36d Mon Sep 17 00:00:00 2001 From: Omar Rizwan Date: Thu, 29 Oct 2020 15:24:08 -0700 Subject: [PATCH] Fix async bug on handler init. Can read url and title now! (kinda) (they don't terminate properly, will fix that next) --- extension/background.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extension/background.js b/extension/background.js index 15ac2db..bff62bb 100644 --- a/extension/background.js +++ b/extension/background.js @@ -51,7 +51,7 @@ function sanitize(s) { view of what the whole filesystem looks like at a glance. */ const router = {}; -async function withTab(handler) { +function withTab(handler) { return { async read(path, fh, size, offset) { const tab = await browser.tabs.get(parseInt(pathComponent(path, -2))); @@ -59,7 +59,7 @@ async function withTab(handler) { } }; } -async function fromScript(code) { +function fromScript(code) { return { async read(path, fh, size, offset) { const tabId = parseInt(pathComponent(path, -2));