This commit is contained in:
2025-01-04 15:48:53 +01:00
parent d25542a4bc
commit 1f12fc1873
2 changed files with 8 additions and 8 deletions

View File

@@ -31,7 +31,12 @@ pub async fn send_donation_notification(
.await;
mark_donate_notification_sent(message.chat().id).await?;
support_command_handler(message, bot).await?;
match message {
MaybeInaccessibleMessage::Regular(message) => {
support_command_handler(message, bot).await?;
}
MaybeInaccessibleMessage::Inaccessible(_) => {}
}
Ok(())
}