зеркало из https://github.com/electron/electron.git
chore: fix ipcRenderer.sendTo deprecation warning (#39342)
This commit is contained in:
Родитель
24c9cbcc0a
Коммит
dcf1c65426
|
@ -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);
|
||||
};
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче