Skip to content

Commit

Permalink
Change lint parent child index names
Browse files Browse the repository at this point in the history
  • Loading branch information
Powersource committed Oct 31, 2023
1 parent 2f01a5f commit dcec468
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions method/link.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ module.exports = function Link (ssb) {
where(
and(
dbType(type),
parent && equal(seekParent, parent, { indexType: 'parent', prefix: true }),
child && equal(seekChild, child, { indexType: 'child', prefix: true }),
parent && equal(seekParent, parent, { indexType: 'linkParent', prefix: true }),
child && equal(seekChild, child, { indexType: 'linkChild', prefix: true }),
equal(seekTanglesLinkRoot, null, { indexType: 'tanglesLinkRoot', prefix: true }),
equal(seekTanglesLinkPrevious, null, { indexType: 'tanglesLinkPrevious', prefix: true })
)
Expand Down

0 comments on commit dcec468

Please sign in to comment.