fix return type

This commit is contained in:
nextel 2019-09-16 12:45:27 +03:00
parent 60f3c822cf
commit de3bf900d8

View file

@ -36,7 +36,7 @@ enum ChatAction {
}
impl<'a> Request<'a> for SendChatAction<'a> {
type ReturnValue = Message;
type ReturnValue = bool;
fn send(self) -> RequestFuture<'a, ResponseResult<Self::ReturnValue>> {
Box::pin(async move {