Skip to content

Commit

Permalink
fix: smh
Browse files Browse the repository at this point in the history
  • Loading branch information
MrExplode committed Oct 31, 2023
1 parent 41e582f commit 3d08e25
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/jira.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use std::{env, os::raw};
use std::sync::Arc;
use std::fs:File;
use std::env;
use std::fs::File;
use std::io::prelude::*;
use std::sync::Arc;

use actix_web::{
post,
Expand Down Expand Up @@ -43,7 +43,7 @@ async fn handle(
}

if env::var("DEBUG_REQUESTS").unwrap_or("".to_string()) == "" {
log_request(raw_body);
let _ = log_request(raw_body);
}

let _ = clients.jira_client.send_message(&message(&body)).await;
Expand Down

0 comments on commit 3d08e25

Please sign in to comment.