Add ApiError::RequestEntityTooLarge

Occurs when bot tries to upload a file which is larger than 50 MB using multipart/form-data.
This commit is contained in:
Summer Gram 2023-01-31 22:49:11 +08:00 committed by GitHub
parent 6274a69a98
commit 932bfa64fe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -740,6 +740,18 @@ pub enum ApiError {
#[serde(rename = "Bad Request: invalid file id")]
#[error("Bad Request: invalid file id")]
FileIdInvalid,
/// Occurs when bot tries to upload a file which is larger than 50 MB using multipart/form-data.
///
/// May happen in methods:
/// 1. [`SendVideo`]
/// 2. [`SendDocument`]
///
/// [`SendVideo`]: crate::payloads::SendVideo
/// [`SendDocument`]: crate::payloads::SendDocument
#[serde(rename = "Request Entity Too Large")]
#[error("Request Entity Too Large")]
RequestEntityTooLarge,
/// Error which is not known to `teloxide`.
///