diff --git a/src/dispatching/update_listeners.rs b/src/dispatching/update_listeners.rs index dd59d6d0..f5bdba74 100644 --- a/src/dispatching/update_listeners.rs +++ b/src/dispatching/update_listeners.rs @@ -120,7 +120,7 @@ impl UpdateListener for S where S: Stream> {} /// /// See also: [`polling`](polling). pub fn polling_default(bot: Arc) -> impl UpdateListener { - polling(bot, Some(Duration::from_secs(1)), None, None) + polling(bot, Some(Duration::from_secs(60)), None, None) } /// Returns a long/short polling update listener with some additional options.