diff options
author | Teddy Wing | 2023-11-12 12:23:07 +0100 |
---|---|---|
committer | Teddy Wing | 2023-11-12 12:23:07 +0100 |
commit | d2aebc157aaaac786b066fe00c2abf122d4f1f0e (patch) | |
tree | 01fb4ade72fa48e943c68b68ded8363265d2025f /src | |
parent | 3ddadb8f214c7a42c15a1bb7b9486a5a97760136 (diff) | |
download | extreload-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')
-rw-r--r-- | src/main.lisp | 2 |
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." |