Restore missing fifo check (#16931)

Conrad Irwin created

Fixes a merge conflict between #16915 and #16039

Release Notes:

- N/A

Change summary

crates/project/src/worktree_store.rs | 3 +++
1 file changed, 3 insertions(+)

Detailed changes

crates/project/src/worktree_store.rs 🔗

@@ -413,6 +413,9 @@ impl WorktreeStore {
                     if skip_entries.contains(&entry.id) {
                         continue;
                     }
+                    if entry.is_fifo {
+                        continue;
+                    }
 
                     let matched_path = if include_root {
                         let mut full_path = PathBuf::from(snapshot.root_name());