We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff392fa commit 47d6367Copy full SHA for 47d6367
src/hunt.rs
@@ -875,7 +875,7 @@ impl Hunter {
875
Some(timestamp) => {
876
match NaiveDateTime::parse_from_str(
877
timestamp,
878
- "%Y-%m-%dT%H:%M:%S%.6fZ",
+ "%Y-%m-%dT%H:%M:%S%.fZ",
879
) {
880
Ok(t) => t,
881
Err(e) => {
src/search.rs
@@ -74,7 +74,7 @@ impl Iterator for Iter<'_> {
74
| Document::Esedb(json) => match json.find(field) {
75
Some(value) => match value.as_str() {
76
77
- NaiveDateTime::parse_from_str(timestamp, "%Y-%m-%dT%H:%M:%S%.6fZ")
+ NaiveDateTime::parse_from_str(timestamp, "%Y-%m-%dT%H:%M:%S%.fZ")
78
}
79
None => continue,
80
},
0 commit comments