mirror of
https://github.com/teloxide/teloxide.git
synced 2024-12-23 06:51:01 +01:00
Fix the CI
This commit is contained in:
parent
e431689ee9
commit
95a540aa19
2 changed files with 5 additions and 1 deletions
|
@ -206,7 +206,10 @@ impl<'a, HandlerE> FilterDispatcher<'a, HandlerE> {
|
|||
self
|
||||
}
|
||||
|
||||
pub async fn dispatch<U>(&mut self, update: Update) -> Result<(), HandlerE> {
|
||||
pub async fn dispatch<U>(
|
||||
&mut self,
|
||||
update: Update,
|
||||
) -> Result<(), HandlerE> {
|
||||
let Update { kind, id } = update;
|
||||
|
||||
let res = match kind.clone() {
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
use derive_more::From;
|
||||
use reqwest::StatusCode;
|
||||
use serde::Deserialize;
|
||||
use thiserror::Error;
|
||||
|
||||
//<editor-fold desc="download">
|
||||
|
|
Loading…
Reference in a new issue