Fix async bug on handler init. Can read url and title now! (kinda)

(they don't terminate properly, will fix that next)
This commit is contained in:
Omar Rizwan 2020-10-29 15:24:08 -07:00
parent c85bb26264
commit 5ed6379687

View file

@ -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));