1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 08:13:42 +00:00

[PM-3686] Remove ipcRenderer from native-message-handler (#6839)

This commit is contained in:
Daniel García
2023-11-16 11:41:56 +01:00
committed by GitHub
parent 91fd4f7411
commit 29be9bff05
2 changed files with 9 additions and 2 deletions

View File

@@ -1,5 +1,4 @@
import { Injectable } from "@angular/core";
import { ipcRenderer } from "electron";
import { firstValueFrom } from "rxjs";
import { NativeMessagingVersion } from "@bitwarden/common/enums";
@@ -225,7 +224,7 @@ export class NativeMessageHandlerService {
}
private sendResponse(response: EncryptedMessageResponse | UnencryptedMessageResponse) {
ipcRenderer.send("nativeMessagingReply", response);
ipc.platform.nativeMessaging.sendReply(response);
}
// Trim all null bytes padded at the end of messages. This happens with C encryption libraries.