# HG changeset patch # User drewp@bigasterisk.com # Date 2022-06-05 01:40:17 # Node ID 90f99b3f2b187149cca9854636f9aec730e46b41 # Parent 7cfca7d35cdb26793d1a9d389918238163c3538a items() was broken; needs more typechecking or tests diff --git a/light9/web/SyncedGraph.ts b/light9/web/SyncedGraph.ts --- a/light9/web/SyncedGraph.ts +++ b/light9/web/SyncedGraph.ts @@ -320,7 +320,7 @@ export class SyncedGraph { const out = []; let current = list; while (true) { - if (current === RDF + "nil") { + if (current.value === RDF + "nil") { break; }