(feat): add cache for conversations and communities

(feat): conversations now get moved to the top when engaged with
(qol): update todo
This commit is contained in:
Alois 2026-05-01 16:40:16 +02:00
commit fd15215f15
14 changed files with 178 additions and 67 deletions

View file

@ -474,7 +474,9 @@ function dedupePackageRecords(records: PackageRecord[]): PackageRecord[] {
unique.set(key, {
...existing,
copiedFiles: [...new Set([...existing.copiedFiles, ...record.copiedFiles])],
copiedFiles: [
...new Set([...existing.copiedFiles, ...record.copiedFiles]),
],
license: existing.license ?? record.license,
description: existing.description ?? record.description,
homepage: existing.homepage ?? record.homepage,