From 5e920f0ae606c886ab9a7222e1f86f62bf475c91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anton=20Vilhelm=20=C3=81sgeirsson?= Date: Wed, 20 Jun 2018 20:26:47 +0000 Subject: [PATCH] viewcontainers bugfix. fixes #717 --- src/excmds.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/excmds.ts b/src/excmds.ts index 087a4073..7ce5470e 100644 --- a/src/excmds.ts +++ b/src/excmds.ts @@ -1862,7 +1862,7 @@ export async function containerupdate(name: string, uname: string, ucolor: strin export async function viewcontainers() { // # and white space don't agree with FF's JSON viewer. // Probably other symbols too. - let containers = await Container.getAll() + let containers = await browserBg.contextualIdentities.query({}) // Can't access src/lib/containers.ts from a content script. window.location.href = "data:application/json," + JSON.stringify(containers)