Skip to content

Commit

Permalink
client.js: clientVersion = '3.0.2'; httpLoging.go: undone: longer pin…
Browse files Browse the repository at this point in the history
…g-wait 3000 -> 4500ms
  • Loading branch information
mehrvarz committed Jun 15, 2022
1 parent 7b5ac99 commit bd48cf4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion httpLogin.go
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ func httpLogin(w http.ResponseWriter, r *http.Request, urlID string, cookie *htt
hub.CalleeClient.SendPing(2500)

// now we wait up to 30x100ms = 3000ms for id=key to possibly log out...
for i := 0; i < 45; i++ {
for i := 0; i < 30; i++ {
time.Sleep(100 * time.Millisecond)
// is hub.CalleeClient still online now?
if hub==nil || hub.CalleeClient==nil || !hub.CalleeClient.isOnline.Get() {
Expand Down
2 changes: 1 addition & 1 deletion webroot/callee/client.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// WebCall Copyright 2022 timur.mobi. All rights reserved.
'use strict';
const clientVersion = '3.0.1';
const clientVersion = '3.0.2';

const avSelect = document.querySelector("select#avSelect");
const localVideoDiv = document.querySelector('div#localVideoDiv');
Expand Down

0 comments on commit bd48cf4

Please sign in to comment.