Commit 0f263296 authored by konovalovsergey's avatar konovalovsergey

minification problem

parent 7d76845f
...@@ -906,12 +906,12 @@ ...@@ -906,12 +906,12 @@
var t = this; var t = this;
if (jwt) { if (jwt) {
t.jwtOpen = undefined; t.jwtOpen = undefined;
t.jwtSession = jwt.token; t.jwtSession = jwt['token'];
if (null !== t.jwtTimeOutId) { if (null !== t.jwtTimeOutId) {
clearTimeout(t.jwtTimeOutId); clearTimeout(t.jwtTimeOutId);
t.jwtTimeOutId = null; 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 = setTimeout(function(){
t.jwtTimeOutId = null; t.jwtTimeOutId = null;
t._send({'type': 'refreshToken', 'jwtSession': t.jwtSession}); t._send({'type': 'refreshToken', 'jwtSession': t.jwtSession});
...@@ -1231,7 +1231,7 @@ ...@@ -1231,7 +1231,7 @@
DocsCoApi.prototype._onAuth = function(data) { DocsCoApi.prototype._onAuth = function(data) {
var t = this; var t = this;
this._onRefreshToken(data.jwt); this._onRefreshToken(data['jwt']);
if (true === this._isAuth) { if (true === this._isAuth) {
this._state = ConnectionState.Authorized; 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