idk why git detect changes there
This commit is contained in:
parent
59222bc4c6
commit
1ee76cbef0
|
@ -26,7 +26,7 @@ pub async fn ban_member(
|
|||
|
||||
let user_id: i64 = match user.get_id() {
|
||||
Some(id) => id,
|
||||
None => return Ok(EventReturn::Skip)
|
||||
None => return Ok(EventReturn::Skip),
|
||||
};
|
||||
|
||||
let callback = || async { bot.send(BanChatMember::new(chat_id, user_id)).await };
|
||||
|
|
|
@ -27,7 +27,7 @@ pub async fn mute_member(
|
|||
|
||||
let user_id: i64 = match user.get_id() {
|
||||
Some(id) => id,
|
||||
None => return Ok(EventReturn::Skip)
|
||||
None => return Ok(EventReturn::Skip),
|
||||
};
|
||||
|
||||
sleep(Duration::from_millis(time.1)).await;
|
||||
|
|
Loading…
Reference in New Issue