Fix: RingingTimeout was being skipped for transferParticipant (#3831)

We weren't relaying the RingingTimeout for transferSipParticipant. This fixes that
This commit is contained in:
Nishad
2025-08-04 02:39:58 -07:00
committed by GitHub
parent 5751692a2f
commit 1fe337160a

View File

@@ -704,9 +704,10 @@ func (s *SIPService) transferSIPParticipantRequest(ctx context.Context, req *liv
}
return &rpc.InternalTransferSIPParticipantRequest{
SipCallId: callID,
TransferTo: req.TransferTo,
PlayDialtone: req.PlayDialtone,
Headers: req.Headers,
SipCallId: callID,
TransferTo: req.TransferTo,
PlayDialtone: req.PlayDialtone,
Headers: req.Headers,
RingingTimeout: req.RingingTimeout,
}, nil
}