Skip to content

Commit

Permalink
fix: temporarily disable the file creation time until Rust v1.78.0 be…
Browse files Browse the repository at this point in the history
…comes popular (#987) (#991)
  • Loading branch information
sxyazi committed May 2, 2024
1 parent a9cf800 commit 5fa0ec0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion yazi-shared/src/fs/cha.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ impl From<Metadata> for Cha {
kind: ck,
len: m.len(),
accessed: m.accessed().ok(),
created: m.created().ok(),
// TODO: remove this once https://github.com/rust-lang/rust/issues/108277 is fixed.
created: None,
modified: m.modified().ok(),

#[cfg(unix)]
Expand Down

0 comments on commit 5fa0ec0

Please sign in to comment.