aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.lisp
diff options
context:
space:
mode:
authorTeddy Wing2023-11-12 12:23:07 +0100
committerTeddy Wing2023-11-12 12:23:07 +0100
commitd2aebc157aaaac786b066fe00c2abf122d4f1f0e (patch)
tree01fb4ade72fa48e943c68b68ded8363265d2025f /src/main.lisp
parent3ddadb8f214c7a42c15a1bb7b9486a5a97760136 (diff)
downloadextreload-d2aebc157aaaac786b066fe00c2abf122d4f1f0e.tar.bz2
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.
Diffstat (limited to 'src/main.lisp')
-rw-r--r--src/main.lisp2
1 files changed, 1 insertions, 1 deletions
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."