2 Commits 4aafbd62d4 ... ec258727ac

Author SHA1 Message Date
  lsc ec258727ac update 1 day ago
  lsc 4b088bef9f update 1 day ago
1 changed files with 2 additions and 2 deletions
  1. 2 2
      pbl.js

+ 2 - 2
pbl.js

@@ -960,10 +960,10 @@ router.route("/getGraphs").all(async (req, res, next) => {
             do {
                 const response = await client.graphs.listEntities({
                     collectionId: folderid,
-                    offset: offset,
+                    offset: offset2,
                     limit: 1000
                 });
-                results2 = result2s.concat(response.results);
+                results2 = results2.concat(response.results);
                 totalEntries2 = response.totalEntries;
                 offset2 += 1000;
             } while (offset2 < totalEntries2);