1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-20 18:23:31 +00:00

[PM-18043] Add serialization/deserialization support (#13804)

* feat: add support for serialization-PR tweaks

* feat: update sdk version
This commit is contained in:
Andreas Coroiu
2025-04-17 16:25:35 +02:00
committed by GitHub
parent 6c930deefe
commit ede4776433
4 changed files with 17 additions and 7 deletions

View File

@@ -19,7 +19,13 @@ export class WebCommunicationProvider implements CommunicationBackend {
return;
}
await this.queue.enqueue({ ...message.message, source: "BrowserBackground" });
void this.queue.enqueue(
new IncomingMessage(
message.message.payload,
message.message.destination,
"BrowserBackground",
),
);
});
}