mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-12 12:21:11 +00:00
chore: Enable more lint rules, disable some that trigger a lot. Will clean up later.
This commit is contained in:
@@ -27,7 +27,7 @@ function getSessionRecipients(cfg: OpenClawConfig) {
|
||||
updatedAt: entry?.updatedAt ?? 0,
|
||||
}))
|
||||
.filter(({ to }) => to.length > 1)
|
||||
.sort((a, b) => b.updatedAt - a.updatedAt);
|
||||
.toSorted((a, b) => b.updatedAt - a.updatedAt);
|
||||
|
||||
// Dedupe while preserving recency ordering.
|
||||
const seen = new Set<string>();
|
||||
|
||||
Reference in New Issue
Block a user