Compare commits

..

No commits in common. "a0d030d26ecd5233cae79de90591a9d52ff9cfbe" and "96766f116f0aa06759befed7c24d19c0ef789d0b" have entirely different histories.

2 changed files with 2 additions and 4 deletions

View file

@ -11,8 +11,6 @@ jobs:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- run: rustup component add rustfmt clippy - run: rustup component add rustfmt clippy
- run: cargo fmt -- --check - run: cargo fmt -- --check
continue-on-error: true
- run: cargo clippy -- -D warnings - run: cargo clippy -- -D warnings
continue-on-error: true
- run: cargo check - run: cargo check
- run: cargo test - run: cargo test

View file

@ -67,7 +67,7 @@ fn main() -> Result<()> {
.map(|x| { .map(|x| {
format!( format!(
"{} {}", "{} {}",
extract_date_time(x).first().unwrap(), extract_date_time(&x.to_string()).first().unwrap(),
extract_message(x) extract_message(x)
) )
}) })