@larksuiteoapi/node-sdk 1.49.0-alpha.1 → 1.49.0-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/index.js +1 -1
- package/lib/index.js +1 -1
- package/package.json +1 -1
package/es/index.js
CHANGED
|
@@ -82895,7 +82895,7 @@ class WSClient {
|
|
|
82895
82895
|
});
|
|
82896
82896
|
}).bind(this)(0);
|
|
82897
82897
|
}), reconnectNonceTime);
|
|
82898
|
-
this.reconnectInfo.nextConnectTime = Date.now() +
|
|
82898
|
+
this.reconnectInfo.nextConnectTime = Date.now() + reconnectNonceTime;
|
|
82899
82899
|
});
|
|
82900
82900
|
}
|
|
82901
82901
|
pingLoop() {
|
package/lib/index.js
CHANGED
|
@@ -82910,7 +82910,7 @@ class WSClient {
|
|
|
82910
82910
|
});
|
|
82911
82911
|
}).bind(this)(0);
|
|
82912
82912
|
}), reconnectNonceTime);
|
|
82913
|
-
this.reconnectInfo.nextConnectTime = Date.now() +
|
|
82913
|
+
this.reconnectInfo.nextConnectTime = Date.now() + reconnectNonceTime;
|
|
82914
82914
|
});
|
|
82915
82915
|
}
|
|
82916
82916
|
pingLoop() {
|