fix: remove 10k drawer cap from status display (#603) (#707)

This commit is contained in:
Sanjay Ramadugu
2026-04-13 00:22:39 -04:00
committed by GitHub
parent e6d232f538
commit 3a50966766
+2 -1
View File
@@ -630,7 +630,8 @@ def status(palace_path: str):
return
# Count by wing and room
r = col.get(limit=10000, include=["metadatas"])
total = col.count()
r = col.get(limit=total, include=["metadatas"]) if total else {"metadatas": []}
metas = r["metadatas"]
wing_rooms = defaultdict(lambda: defaultdict(int))