1
0
mirror of https://github.com/lensapp/lens.git synced 2024-12-01 02:25:52 +03:00

fix: wrong order of ids when sendToFrame is called

Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
This commit is contained in:
Jari Kolehmainen 2023-05-23 14:43:46 +03:00 committed by Sebastian Malton
parent 015a585a84
commit ec9a68bf09
2 changed files with 5 additions and 5 deletions

View File

@ -84,11 +84,11 @@ describe("send-message-to-channel", () => {
it("sends the message to individual frames in webcontents", () => {
expect(sendToFrameMock.mock.calls).toEqual([
["first", [42, 126], "some-channel", "some-message"],
["first", [84, 168], "some-channel", "some-message"],
["first", [126, 42], "some-channel", "some-message"],
["first", [168, 84], "some-channel", "some-message"],
["second", [42, 126], "some-channel", "some-message"],
["second", [84, 168], "some-channel", "some-message"],
["second", [126, 42], "some-channel", "some-message"],
["second", [168, 84], "some-channel", "some-message"],
]);
});
});

View File

@ -31,7 +31,7 @@ const sendMessageToChannelInjectable = getInjectable({
(channelId: string, ...args: any[]) => webContent.send(channelId, ...args),
...[...frameIds].map(({ frameId, processId }) => (channelId: string, ...args: any[]) => {
webContent.sendToFrame([frameId, processId], channelId, ...args);
webContent.sendToFrame([processId, frameId], channelId, ...args);
}),
]),