Skip to content
This repository was archived by the owner on Jan 2, 2025. It is now read-only.

Commit 4eff9cc

Browse files
authored
Revert "ignore non-blob objects in git file sources (#557)" (#561)
This reverts commit 001ca9f.
1 parent c45972a commit 4eff9cc

File tree

1 file changed

+0
-4
lines changed
  • server/bleep/src/repo/iterator

1 file changed

+0
-4
lines changed

server/bleep/src/repo/iterator/git.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -143,10 +143,6 @@ impl FileSource for GitWalker {
143143
return None;
144144
}
145145

146-
if object.kind != gix::object::Kind::Blob {
147-
return None;
148-
}
149-
150146
let buffer = String::from_utf8_lossy(&object.data).to_string();
151147

152148
Some(RepoFile {

0 commit comments

Comments
 (0)