Changeset - 90f99b3f2b18
[Not reviewed]
default
0 1 0
drewp@bigasterisk.com - 3 years ago 2022-06-05 01:40:17
drewp@bigasterisk.com
items() was broken; needs more typechecking or tests
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
light9/web/SyncedGraph.ts
Show inline comments
 
@@ -317,13 +317,13 @@ export class SyncedGraph {
 
  }
 

	
 
  items(list: any) {
 
    const out = [];
 
    let current = list;
 
    while (true) {
 
      if (current === RDF + "nil") {
 
      if (current.value === RDF + "nil") {
 
        break;
 
      }
 

	
 
      this._autoDeps.askedFor(current, null, null, null); // a little loose
 

	
 
      const firsts = this.graph.getQuads(current, RDF + "first", null, null);
0 comments (0 inline, 0 general)