fix: inspector context menu throwing an error (#29436)

This commit is contained in:
Shelley Vohr 2021-06-02 05:39:48 +02:00 коммит произвёл GitHub
Родитель dee4c4b908
Коммит 3b75549511
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -54,7 +54,7 @@ const isChromeDevTools = function (pageURL: string) {
};
const assertChromeDevTools = function (contents: Electron.WebContents, api: string) {
const pageURL = contents._getURL();
const pageURL = contents.getURL();
if (!isChromeDevTools(pageURL)) {
console.error(`Blocked ${pageURL} from calling ${api}`);
throw new Error(`Blocked ${api}`);

1
typings/internal-electron.d.ts поставляемый
Просмотреть файл

@ -56,7 +56,6 @@ declare namespace Electron {
}
interface WebContents {
_getURL(): string;
_loadURL(url: string, options: ElectronInternal.LoadURLOptions): void;
_stop(): void;
_goBack(): void;