fix(presence): 在线判定窗口从 3 分钟调整为 5 分钟(行业标准)

心跳间隔 60s 不变,窗口从 180s → 300s(5x 容差),
对网络抖动、Android ROM 限制、WiFi/4G 切换更友好。

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
hailin 2026-03-05 21:48:09 -08:00
parent c9217a85a9
commit 92c71b5e97
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
export class TimeWindow {
static readonly DEFAULT_ONLINE_WINDOW_SECONDS = 180; // 3分钟
static readonly DEFAULT_ONLINE_WINDOW_SECONDS = 300; // 5分钟行业标准
static readonly DEFAULT_HEARTBEAT_INTERVAL_SECONDS = 60; // 60秒
private readonly _windowSeconds: number;