fix(fs): ignore OS specific paths in scope deserialization (#1837)

This commit is contained in:
Fabian-Lars
2024-09-26 01:43:33 +02:00
committed by GitHub
parent b7ff3a6bdb
commit fc9b189e83
4 changed files with 19 additions and 14 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ pub enum EntryRaw {
#[derive(Debug)]
pub struct Entry {
pub path: PathBuf,
pub path: Option<PathBuf>,
}
pub type EventId = u32;