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:
Dogma Toscarina 2024-06-07 02:15:51 +03:00
parent 18b938bf95
commit 6e59ee1eb8

View File

@ -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,