Skip to content

Commit

Permalink
WIP [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
CMCDragonkai committed Nov 9, 2023
1 parent 349d186 commit 34b15c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nodes/NodeGraph.ts
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ class NodeGraph {
bucketsDbIterator.seek([key[0], key[2]]);
// eslint-disable-next-line
const iteratorResult = await bucketsDbIterator.next();
if (iteratorResult == null) never();
if (iteratorResult == null) utils.never();
const [, nodeData] = iteratorResult;
if (bucketIndex == null) {
// First entry of the first bucket
Expand Down

0 comments on commit 34b15c5

Please sign in to comment.