Fixed unlimited Video retries
This commit is contained in:
parent
bf69627275
commit
b220aaef28
1 changed files with 1 additions and 3 deletions
|
@ -773,9 +773,6 @@ export class RTCConnection {
|
||||||
}
|
}
|
||||||
|
|
||||||
public doInitialSetup() {
|
public doInitialSetup() {
|
||||||
/* initialize rtc connection */
|
|
||||||
this.retryCalculator.reset();
|
|
||||||
|
|
||||||
if(!("RTCPeerConnection" in window)) {
|
if(!("RTCPeerConnection" in window)) {
|
||||||
this.handleFatalError(tr("WebRTC has been disabled (RTCPeerConnection is not defined)"), false);
|
this.handleFatalError(tr("WebRTC has been disabled (RTCPeerConnection is not defined)"), false);
|
||||||
return;
|
return;
|
||||||
|
@ -917,6 +914,7 @@ export class RTCConnection {
|
||||||
/* will be called by the server connection handler */
|
/* will be called by the server connection handler */
|
||||||
} else {
|
} else {
|
||||||
this.reset(true);
|
this.reset(true);
|
||||||
|
this.retryCalculator.reset();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue