Explorar el Código

Do not show protocol error alert when DC closes (#958)

Danilo Bargen hace 5 años
padre
commit
99776a81f9
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      src/services/webclient.ts

+ 2 - 2
src/services/webclient.ts

@@ -1095,8 +1095,8 @@ export class WebClientService {
                 });
             };
             dc.onclose = () => {
-                this.arpLog.error(`Data channel ${dc.label} closed prematurely`);
-                this.failSession();
+                this.arpLog.warn(`Data channel ${dc.label} closed`);
+                this.failSession(false);
             };
             dc.onerror = (event) => {
                 this.arpLog.error(`Data channel ${dc.label} error:`, event);