From d2aebc157aaaac786b066fe00c2abf122d4f1f0e Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Sun, 12 Nov 2023 12:23:07 +0100 Subject: main: Don't pass a callback to `chrome.tabs.reload` I thought this might fix the reload problem for Manifest V3 extensions, but it did nothing. --- src/main.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.lisp b/src/main.lisp index ad47ef0..79d0a4a 100644 --- a/src/main.lisp +++ b/src/main.lisp @@ -146,7 +146,7 @@ the target to reload the current tab." (runtime-evaluate-msg (next-call-id *devtools-secondary-call-id*) session-id - "chrome.tabs.reload(() => {})"))) + "chrome.tabs.reload()"))) (defun extension-targets (targets) "Filter `targets`, returning a list of targets corresponding to extensions." -- cgit v1.2.3