This commit is contained in:
2026-05-26 11:20:37 +09:00
parent e94869b9e7
commit 1cca11edc4
4 changed files with 138 additions and 71 deletions
+1 -1
View File
@@ -624,7 +624,7 @@ object TradingLogStore {
val lastSentTime = noticeFilter[code.uppercase()]
// 기록이 없거나(처음 보냄), 마지막 발송 기준 30분이 지났다면
if (lastSentTime == null || (current - lastSentTime > 1000 * 60 * 30L)) {
if (lastSentTime == null || (current - lastSentTime > (1000 * 60) * KisSession.tradeConfig.noticeGapTime)) {
isSendable = true
noticeFilter[code.uppercase()] = current // 즉시 발송 시간 갱신하여 중복 방지
}