Monorepo for Tangled tangled.org

appview: fix stack merging

the current PR is already in the list of PRs to be merged, include only
PRs that are strictly below it for merge.

Changed files
+1 -1
appview
state
+1 -1
appview/state/pull.go
··· 1834 } 1835 1836 // combine patches of substack 1837 - subStack := stack.Below(pull) 1838 // collect the portion of the stack that is mergeable 1839 mergeable := subStack.Mergeable() 1840 // add to total patch
··· 1834 } 1835 1836 // combine patches of substack 1837 + subStack := stack.StrictlyBelow(pull) 1838 // collect the portion of the stack that is mergeable 1839 mergeable := subStack.Mergeable() 1840 // add to total patch