fix an missed call site

This commit is contained in:
Kiril Videlov 2024-10-16 18:46:01 +02:00 committed by GitHub
parent 99ebced634
commit 64d2641e70
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -466,7 +466,7 @@ impl StackExt for Stack {
let head_commit =
commit_by_oid_or_change_id(&head.target, ctx, self.head(), &default_target)?.id();
let local_patches = repo
.log(head_commit, LogUntil::Commit(previous_head))?
.log(head_commit, LogUntil::Commit(previous_head), false)?
.iter()
.rev() // oldest commit first
.map(|c| match c.change_id() {