(target: TargetChat, userId: string)
| 431 | if (!entry) return undefined; |
| 432 | if (Date.now() - entry.updatedAt > DAY_MS) return undefined; |
| 433 | return entry; |
| 434 | } |
| 435 | |
| 436 | async function setCachedEntry( |
| 437 | target: TargetChat, |
| 438 | userId: string, |
no outgoing calls
no test coverage detected