diff --git a/src/main.rs b/src/main.rs index 9fab1e7..db72fa0 100644 --- a/src/main.rs +++ b/src/main.rs @@ -94,8 +94,7 @@ async fn run(source: SourcePtr, notifier: Arc) { }); // notify by qq bot - let note = || async { notifier.notify(&source.name(), new_items.clone()).await }; - note.retry(&retry_config).await?; + notifier.notify(&source.name(), new_items.clone()).await?; } };