changeset 2130:90f99b3f2b18

items() was broken; needs more typechecking or tests
author drewp@bigasterisk.com
date Sun, 05 Jun 2022 01:40:17 +0000
parents 7cfca7d35cdb
children 636bd87d0eb3
files light9/web/SyncedGraph.ts
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/light9/web/SyncedGraph.ts	Sun Jun 05 01:39:41 2022 +0000
+++ b/light9/web/SyncedGraph.ts	Sun Jun 05 01:40:17 2022 +0000
@@ -320,7 +320,7 @@
     const out = [];
     let current = list;
     while (true) {
-      if (current === RDF + "nil") {
+      if (current.value === RDF + "nil") {
         break;
       }