Include room_id in CallCanceled message

This ensures we don't accidentally cancel old calls.
This commit is contained in:
Antonio Scandurra 2022-12-13 11:43:09 +01:00
parent e2b132ef23
commit 0220d7ba5d
4 changed files with 47 additions and 14 deletions

View file

@ -212,7 +212,9 @@ message IncomingCall {
optional ParticipantProject initial_project = 4;
}
message CallCanceled {}
message CallCanceled {
uint64 room_id = 1;
}
message CancelCall {
uint64 room_id = 1;