chore: fix ipcRenderer.sendTo deprecation warning (#39342)

This commit is contained in:
David Sanders 2023-08-08 04:49:56 -07:00 коммит произвёл GitHub
Родитель 24c9cbcc0a
Коммит dcf1c65426
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -18,8 +18,9 @@ ipcRenderer.sendToHost = function (channel, ...args) {
return ipc.sendToHost(channel, args);
};
const sendToDeprecated = deprecate.warnOnce('ipcRenderer.sendTo');
ipcRenderer.sendTo = function (webContentsId, channel, ...args) {
deprecate.warnOnce('ipcRenderer.sendTo');
sendToDeprecated();
return ipc.sendTo(webContentsId, channel, args);
};