Merge pull request #4314 from gitbutlerapp/fix-migration-cdoe

Update other logic TODO: dedup logic
This commit is contained in:
Kiril Videlov 2024-07-09 23:38:09 +02:00 committed by GitHub
commit 8e7d9c9f64
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -43,7 +43,7 @@ impl VirtualBranches {
self.list_all_branches().map(|branches| {
branches
.into_iter()
.filter(|branch| branch.in_workspace)
.filter(|branch| branch.in_workspace && !branch.is_old_unapplied())
.collect()
})
}