Fix the CI

This commit is contained in:
Temirkhan Myrzamadi 2020-01-08 16:38:48 +06:00
parent e431689ee9
commit 95a540aa19
2 changed files with 5 additions and 1 deletions

View file

@ -206,7 +206,10 @@ impl<'a, HandlerE> FilterDispatcher<'a, HandlerE> {
self 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 Update { kind, id } = update;
let res = match kind.clone() { let res = match kind.clone() {

View file

@ -1,5 +1,6 @@
use derive_more::From; use derive_more::From;
use reqwest::StatusCode; use reqwest::StatusCode;
use serde::Deserialize;
use thiserror::Error; use thiserror::Error;
//<editor-fold desc="download"> //<editor-fold desc="download">