1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-23 03:22:50 +02:00

[PM-11519] browser global reference triggering an error when sending an extension message (#10819)

This commit is contained in:
Cesar Gonzalez 2024-08-30 08:59:04 -05:00 committed by GitHub
parent f44b7b361d
commit 361f90a488
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -105,7 +105,7 @@ export async function sendExtensionMessage(
command: string, command: string,
options: Record<string, any> = {}, options: Record<string, any> = {},
): Promise<any> { ): Promise<any> {
if (typeof browser !== "undefined") { if (typeof browser?.runtime?.sendMessage !== "undefined") {
return browser.runtime.sendMessage({ command, ...options }); return browser.runtime.sendMessage({ command, ...options });
} }