Commit 445c9872 authored by Alexey Golubev's avatar Alexey Golubev

Merge branch 'hotfix/v4.2.10'

parents 7d76845f 0f263296
......@@ -906,12 +906,12 @@
var t = this;
if (jwt) {
t.jwtOpen = undefined;
t.jwtSession = jwt.token;
t.jwtSession = jwt['token'];
if (null !== t.jwtTimeOutId) {
clearTimeout(t.jwtTimeOutId);
t.jwtTimeOutId = null;
}
var timeout = Math.max(0, jwt.expires - t.maxAttemptCount * t.reconnectInterval);
var timeout = Math.max(0, jwt['expires'] - t.maxAttemptCount * t.reconnectInterval);
t.jwtTimeOutId = setTimeout(function(){
t.jwtTimeOutId = null;
t._send({'type': 'refreshToken', 'jwtSession': t.jwtSession});
......@@ -1231,7 +1231,7 @@
DocsCoApi.prototype._onAuth = function(data) {
var t = this;
this._onRefreshToken(data.jwt);
this._onRefreshToken(data['jwt']);
if (true === this._isAuth) {
this._state = ConnectionState.Authorized;
// Мы должны только соединиться для получения файла. Совместное редактирование уже было отключено.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment