From 0183000dbbcbe1462143b83c4a88e04669712578 Mon Sep 17 00:00:00 2001 From: syui Date: Sat, 17 Feb 2024 11:59:28 +0900 Subject: [PATCH] fix --- src/bot.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bot.rs b/src/bot.rs index aa30c1b..3d29cba 100644 --- a/src/bot.rs +++ b/src/bot.rs @@ -16,10 +16,10 @@ use crate::data::Notify; pub fn c_bot(c: &Context) { let h = async { - let mut notify = notify::get_request(20).await; + let mut notify = notify::get_request(100).await; if notify == "err" { refresh(c); - notify = notify::get_request(20).await; + notify = notify::get_request(100).await; } let notify: Notify = serde_json::from_str(¬ify).unwrap();