-
Notifications
You must be signed in to change notification settings - Fork 65
Feat 增加团队监控倒计时条强制设置nRefresh #82
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The head ref may contain hidden characters: "feat--\u589E\u52A0\u56E2\u961F\u76D1\u63A7\u5012\u8BA1\u65F6\u6761\u5F3A\u5236\u8BBE\u7F6EnRefresh"
Changes from all commits
a2957cf
c3df06e
1634554
c11ee6a
7b04d4c
bfba641
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -146,8 +146,12 @@ local function CreateCountdown(nType, szKey, tParam, szSender, szReceiver) | |
| if ui and ui:IsValid() then | ||
| ui.obj:RemoveItem() | ||
| end | ||
| -- 2025.08.25���ӵ���ʱ��ǿ������nRefresh��nTimeΪ-1��-2ǿ�Ƹ���nRefresh��Ϊ���ݾ����ݣ����ж���nRefresh�ֶ����� | ||
| if tParam.nRefresh then | ||
| ST_TIME_EXPIRE[nType][szKey] = nTime + tParam.nRefresh * 1000 - 3 | ||
| end | ||
| elseif tTime.nTime == -2 then | ||
| ST_TIME_EXPIRE[nType][szKey] = nil | ||
| ST_TIME_EXPIRE[nType][szKey] = nTime + (tParam.nRefresh or 0) * 1000 - 3 | ||
|
Comment on lines
+151
to
+154
|
||
| else | ||
| local nExpire = ST_TIME_EXPIRE[nType][szKey] | ||
| if nExpire and nExpire > nTime then | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The comment contains garbled Chinese characters (���ӵ���ʱ��ǿ������nRefresh��nTimeΪ-1��-2ǿ�Ƹ���nRefresh��Ϊ���ݾ����ݣ����ж���nRefresh�ֶ�����). The comment should use proper UTF-8 encoding for Chinese characters.