Михаил Капелько 10 달 전
부모
커밋
5cd4ad6d74
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. +4
    -4
      Modules/MicX/MicItem/src/MicItem.Shoulds.swift

+ 4
- 4
Modules/MicX/MicItem/src/MicItem.Shoulds.swift 파일 보기

@@ -11,14 +11,14 @@ public extension MicItem {
return nil
}

static func shouldResetTimeout(_ c: MicItemContext) -> (delay: Int, value: Bool)? {
static func shouldResetTimeout(_ c: MicItemContext) -> TimeInterval? {
if
c.activityDate.isRecent,
let end = c.activityDate.value
{
let now = Date()
let timeout = now < end
return (timeout, true)
let timeout = end.timerIntervalSinceNow()
/**/print("ИГР MicIS.shouldRT timeout: '\(timeout)'")
return nil
}

return nil


불러오는 중...
취소
저장