mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-21 08:56:20 +04:00
Fix breaking change in gix Tree::loop_entry_by_path
This commit is contained in:
parent
b5d56e57a6
commit
9806ca08b1
@ -198,7 +198,7 @@ fn find_file_in_commit(repo: &Repository, commit: &Commit, file: &Path) -> Resul
|
||||
let rel_path = file.strip_prefix(repo_dir)?;
|
||||
let tree = commit.tree()?;
|
||||
let tree_entry = tree
|
||||
.lookup_entry_by_path(rel_path, &mut Vec::new())?
|
||||
.lookup_entry_by_path(rel_path)?
|
||||
.context("file is untracked")?;
|
||||
match tree_entry.mode().kind() {
|
||||
// not a file, everything is new, do not show diff
|
||||
|
Loading…
Reference in New Issue
Block a user