Поднятие версии
All checks were successful
SP Builds / build (push) Successful in 5m58s

This commit is contained in:
RoyceDa
2026-04-04 18:59:52 +02:00
parent 779c265851
commit cf29cecfd6
2 changed files with 3 additions and 10 deletions

View File

@@ -239,12 +239,6 @@ export function CallProvider(props : CallProviderProps) {
/**
* У нас уже есть активный звонок, отправляем сигнал другой стороне, что линия занята
*/
let busySignal = new PacketSignalPeer();
busySignal.setSrc(publicKey);
busySignal.setDst(packet.getSrc());
busySignal.setSignalType(SignalType.END_CALL_BECAUSE_BUSY);
send(busySignal);
info("Received incoming call from " + packet.getSrc() + " but we are already on a call, sent busy signal");
return;
}
callSessionIdRef.current = packet.getCallId();