diff --git a/src/commands/menu.rs b/src/commands/menu.rs index f9e885d..da10904 100644 --- a/src/commands/menu.rs +++ b/src/commands/menu.rs @@ -13,6 +13,7 @@ pub async fn menu(bot: Throttle, msg: Message, db: DatabaseConnection) -> c bot.send_message(msg.chat.id, "You don't have any accounts") .reply_markup(deletion_markup()) .await?; + return Ok(()); } let markup = spawn_blocking(|| menu_markup_sync("get", names)).await?;