Add support for call link epochs

Co-authored-by: trevor-signal <trevor@signal.org>
This commit is contained in:
emir-signal
2025-08-07 15:12:56 -04:00
committed by GitHub
parent ee45891d35
commit ebf2892039
36 changed files with 393 additions and 86 deletions
+2 -1
View File
@@ -359,9 +359,10 @@ ipc.on('start-call-lobby', (_event, info) => {
window.Events.startCallingLobbyViaToken(info.token);
});
ipc.on('start-call-link', (_event, { key }) => {
ipc.on('start-call-link', (_event, { key, epoch }) => {
window.reduxActions?.calling?.startCallLinkLobby({
rootKey: key,
epoch,
});
});