chore: Enable "curly" rule to avoid single-statement if confusion/errors.

This commit is contained in:
cpojer
2026-01-31 16:19:20 +09:00
parent 009b16fab8
commit 5ceff756e1
1266 changed files with 27871 additions and 9393 deletions

View File

@@ -15,7 +15,9 @@ function keyFor(channel: ChannelId, accountId: string) {
function ensureEntry(channel: ChannelId, accountId: string): ActivityEntry {
const key = keyFor(channel, accountId);
const existing = activity.get(key);
if (existing) return existing;
if (existing) {
return existing;
}
const created: ActivityEntry = { inboundAt: null, outboundAt: null };
activity.set(key, created);
return created;
@@ -30,8 +32,12 @@ export function recordChannelActivity(params: {
const at = typeof params.at === "number" ? params.at : Date.now();
const accountId = params.accountId?.trim() || "default";
const entry = ensureEntry(params.channel, accountId);
if (params.direction === "inbound") entry.inboundAt = at;
if (params.direction === "outbound") entry.outboundAt = at;
if (params.direction === "inbound") {
entry.inboundAt = at;
}
if (params.direction === "outbound") {
entry.outboundAt = at;
}
}
export function getChannelActivity(params: {