utils/telegram/try_do: shorten DEMOTE_FAILURE_MESSAGE
It would be annoying to get this long message spamming the chat window. Such error messages should describe what has gone wrong, but not give any guidances, advices or directions; they belong elsewhere (documentation, wiki, etc).
This commit is contained in:
parent
4e65313438
commit
832b6a4230
|
@ -5,11 +5,8 @@ use std::future::Future;
|
|||
|
||||
use super::demote::demote_user;
|
||||
|
||||
const DEMOTE_FAILURE_MESSAGE: &str = "\
|
||||
Нельзя выдать ограничение пользователю, т.к. невозможно демотнуть \
|
||||
участника посредством бота, если ему выдан админ при помощи других \
|
||||
админов или владельца чата.\
|
||||
";
|
||||
const DEMOTE_FAILURE_MESSAGE: &str = "Команда не может быть выполнена: \
|
||||
не удалось удалить административные привилегии пользователя.";
|
||||
|
||||
pub async fn try_restrict<F, R>(
|
||||
future_callback: F,
|
||||
|
|
Loading…
Reference in New Issue