@shimotsuki/core 3.0.28 → 3.0.29
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/dist/shimotsuki_core.js +2 -2
- package/package.json +1 -1
package/dist/shimotsuki_core.js
CHANGED
|
@@ -1673,11 +1673,11 @@ class SocialGameClientManager extends BaseManager {
|
|
|
1673
1673
|
async safeTriggerReconnectAll() {
|
|
1674
1674
|
const e = ee();
|
|
1675
1675
|
if (this.reconnecting) {
|
|
1676
|
-
|
|
1676
|
+
console.log("[safeTriggerReconnectAll] 正在重连中,跳过本次");
|
|
1677
1677
|
return;
|
|
1678
1678
|
}
|
|
1679
1679
|
if (e - this.lastReconnectTime < this.RECONNECT_COOLDOWN) {
|
|
1680
|
-
|
|
1680
|
+
console.log("[safeTriggerReconnectAll] 距上次重连过近,跳过本次");
|
|
1681
1681
|
return;
|
|
1682
1682
|
}
|
|
1683
1683
|
this.lastReconnectTime = e;
|