diff --git a/httpLogin.go b/httpLogin.go index c82fb648..7048e7f5 100644 --- a/httpLogin.go +++ b/httpLogin.go @@ -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() { diff --git a/webroot/callee/client.js b/webroot/callee/client.js index a385f6f1..0a5f192e 100644 --- a/webroot/callee/client.js +++ b/webroot/callee/client.js @@ -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');