diff --git a/Cargo.lock b/Cargo.lock index ed5e373..da71266 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1511,7 +1511,7 @@ checksum = "e987b6bf443f4b5b3b6f38704195592cca41c5bb7aedd3c3693c7081f8289860" [[package]] name = "tron" -version = "0.2.9" +version = "0.2.10" dependencies = [ "anyhow", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index d8e4f9c..385ded6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tron" -version = "0.2.9" +version = "0.2.10" authors = ["Christine Dodrill "] edition = "2018" repository = "https://tulpa.dev/cadey/tron" diff --git a/src/main.rs b/src/main.rs index b3b49ee..1e8fccd 100644 --- a/src/main.rs +++ b/src/main.rs @@ -257,10 +257,6 @@ async fn main() -> Result<()> { .await { log::error!("firehose error: {:#?}", why); - discord_webhook::execute( - cfg.discord_webhook_url.clone(), - Body::new(format!("firehose error:\n```\n{:#?}\n```", why)) - ).await?; std::thread::sleep(std::time::Duration::from_millis(tries * 1000)); if tries == 5 {