Skip to content

Commit bd48cf4

Browse files
committed
client.js: clientVersion = '3.0.2'; httpLoging.go: undone: longer ping-wait 3000 -> 4500ms
1 parent 7b5ac99 commit bd48cf4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

httpLogin.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ func httpLogin(w http.ResponseWriter, r *http.Request, urlID string, cookie *htt
188188
hub.CalleeClient.SendPing(2500)
189189

190190
// now we wait up to 30x100ms = 3000ms for id=key to possibly log out...
191-
for i := 0; i < 45; i++ {
191+
for i := 0; i < 30; i++ {
192192
time.Sleep(100 * time.Millisecond)
193193
// is hub.CalleeClient still online now?
194194
if hub==nil || hub.CalleeClient==nil || !hub.CalleeClient.isOnline.Get() {

webroot/callee/client.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// WebCall Copyright 2022 timur.mobi. All rights reserved.
22
'use strict';
3-
const clientVersion = '3.0.1';
3+
const clientVersion = '3.0.2';
44

55
const avSelect = document.querySelector("select#avSelect");
66
const localVideoDiv = document.querySelector('div#localVideoDiv');

0 commit comments

Comments
 (0)