[PM-11519] `browser` global reference triggering an error when sending an extension message (#10819)
This commit is contained in:
parent
f44b7b361d
commit
361f90a488
|
@ -105,7 +105,7 @@ export async function sendExtensionMessage(
|
|||
command: string,
|
||||
options: Record<string, any> = {},
|
||||
): Promise<any> {
|
||||
if (typeof browser !== "undefined") {
|
||||
if (typeof browser?.runtime?.sendMessage !== "undefined") {
|
||||
return browser.runtime.sendMessage({ command, ...options });
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue