We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 463c411 commit 5b6cf7aCopy full SHA for 5b6cf7a
1 file changed
asyncgit/src/sync/status.rs
@@ -202,7 +202,11 @@ pub fn get_status(
202
let iter = status.into_index_worktree_iter(Vec::new())?;
203
204
for item in iter {
205
- let item = item?;
+ let Ok(item) = item else {
206
+ log::warn!("[status] the status iter returned an error for an item: {item:?}");
207
+
208
+ continue;
209
+ };
210
211
let status = item.summary().map(Into::into);
212
0 commit comments